File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -62,14 +62,14 @@ def get_data(filename: str) -> str:
62
62
)
63
63
64
64
needs_singularity_2_6 = pytest .mark .skipif (
65
- not (distutils .spawn .find_executable ("singularity" ) and is_version_2_6 ()),
65
+ not bool (distutils .spawn .find_executable ("singularity" ) and is_version_2_6 ()),
66
66
reason = "Requires that version 2.6.x of singularity executable version is on the system path." ,
67
67
)
68
68
69
69
needs_singularity_3_or_newer = pytest .mark .skipif (
70
- not (distutils .spawn .find_executable ("singularity" ) and is_version_3_or_newer ),
71
- reason = "Requires that version 2.6 .x of singularity executable version is on the system path." ,
72
- )
70
+ ( not bool (distutils .spawn .find_executable ("singularity" ))) or ( not is_version_3_or_newer () ),
71
+ reason = "Requires that version 3 .x of singularity executable version is on the system path." ,
72
+ )
73
73
74
74
75
75
windows_needs_docker = pytest .mark .skipif (
You can’t perform that action at this time.
0 commit comments