Skip to content

Commit 39d1684

Browse files
author
Gavin Aguiar
committed
Simplified condition to run unit test
1 parent 4375dba commit 39d1684

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/unittests/test_utilities_dependency.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -555,7 +555,7 @@ def test_use_worker_dependencies_disable(self):
555555
import common_module # NoQA
556556

557557
@unittest.skipUnless(
558-
sys.version_info.major == 3 and sys.version_info.minor in (6, 7, 8, 9),
558+
sys.version_info.major == 3 and sys.version_info.minor != 10,
559559
'Test only available for Python 3.6, 3.7, 3.8 or 3.9'
560560
)
561561
def test_use_worker_dependencies_default_python_36_37_38_39(self):

0 commit comments

Comments
 (0)