From 0a9b5d839d7102c83e5ebfa4154664f8f88c105d Mon Sep 17 00:00:00 2001 From: Hendrik Makait Date: Thu, 5 Sep 2024 22:19:02 +0200 Subject: [PATCH] Tag coiled.function in TPC-H (#1540) --- tests/tpch/conftest.py | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/tests/tpch/conftest.py b/tests/tpch/conftest.py index ce05253af1..61d70de126 100644 --- a/tests/tpch/conftest.py +++ b/tests/tpch/conftest.py @@ -315,7 +315,7 @@ def machine_spec(scale): @pytest.fixture(scope="module") -def module_run(local, module, scale, name, machine_spec): +def module_run(local, module, scale, name, machine_spec, github_cluster_tags): if local: def _run(function): @@ -325,7 +325,11 @@ def _run(function): else: - @coiled.function(**machine_spec, name=f"tpch-{module}-{scale}-{name}") + @coiled.function( + **machine_spec, + name=f"tpch-{module}-{scale}-{name}", + tags=github_cluster_tags, + ) def _run(function): return function()