Skip to content

Commit

Permalink
Tag coiled.function in TPC-H (#1540)
Browse files Browse the repository at this point in the history
  • Loading branch information
hendrikmakait authored Sep 5, 2024
1 parent a11f90d commit 0a9b5d8
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions tests/tpch/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand All @@ -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()

Expand Down

0 comments on commit 0a9b5d8

Please sign in to comment.