@@ -55,7 +55,7 @@ class UseResources(CommandLine):
55
55
56
56
@pytest .mark .skip (reason = "inconsistent readings" )
57
57
@pytest .mark .skipif (os .getenv ("CI_SKIP_TEST" , False ), reason = "disabled in CI tests" )
58
- @pytest .mark .parametrize ("mem_gb, n_procs" , [(0.5 , 3 ), (2.2 , 8 ), (0.8 , 4 ), (1.5 , 1 )])
58
+ @pytest .mark .parametrize (( "mem_gb" , " n_procs") , [(0.5 , 3 ), (2.2 , 8 ), (0.8 , 4 ), (1.5 , 1 )])
59
59
def test_cmdline_profiling (tmpdir , mem_gb , n_procs , use_resource_monitor ):
60
60
"""
61
61
Test runtime profiler correctly records workflow RAM/CPUs consumption
@@ -80,7 +80,7 @@ def test_cmdline_profiling(tmpdir, mem_gb, n_procs, use_resource_monitor):
80
80
@pytest .mark .skipif (
81
81
True , reason = "test disabled temporarily, until function profiling works"
82
82
)
83
- @pytest .mark .parametrize ("mem_gb, n_procs" , [(0.5 , 3 ), (2.2 , 8 ), (0.8 , 4 ), (1.5 , 1 )])
83
+ @pytest .mark .parametrize (( "mem_gb" , " n_procs") , [(0.5 , 3 ), (2.2 , 8 ), (0.8 , 4 ), (1.5 , 1 )])
84
84
def test_function_profiling (tmpdir , mem_gb , n_procs , use_resource_monitor ):
85
85
"""
86
86
Test runtime profiler correctly records workflow RAM/CPUs consumption
0 commit comments