@@ -55,7 +55,7 @@ class UseResources(CommandLine):
5555
5656@pytest .mark .skip (reason = "inconsistent readings" )
5757@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 )])
5959def test_cmdline_profiling (tmpdir , mem_gb , n_procs , use_resource_monitor ):
6060 """
6161 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):
8080@pytest .mark .skipif (
8181 True , reason = "test disabled temporarily, until function profiling works"
8282)
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 )])
8484def test_function_profiling (tmpdir , mem_gb , n_procs , use_resource_monitor ):
8585 """
8686 Test runtime profiler correctly records workflow RAM/CPUs consumption
0 commit comments