Skip to content

Commit 47cf224

Browse files
committedJan 26, 2024
test: allow Snakemake tests to run on newer Python versions (#700)
After upgrading Snakemake to version 7.32.4 (reanahub/reana-commons#435) there is no need to avoid running Snakemake tests on Python 3.11 and 3.12, as it should be supported. Closes #655
1 parent fa5b7c7 commit 47cf224

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed
 

‎tests/test_cli_workflows.py

-4
Original file line numberDiff line numberDiff line change
@@ -580,10 +580,6 @@ def test_create_snakemake_workflow_from_json_parameters(
580580
external_parameter_yaml_file,
581581
):
582582
"""Test create workflow from json with external parameters."""
583-
if sys.version_info.major == 3 and sys.version_info.minor in (11, 12):
584-
pytest.xfail(
585-
"Snakemake features of reana-client are not supported on Python 3.11"
586-
)
587583
status_code = 201
588584
response = {
589585
"message": "The workflow has been successfully created.",

0 commit comments

Comments
 (0)