Skip to content

Commit 8450b00

Browse files
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 fe0b00a commit 8450b00

File tree

2 files changed

+1
-5
lines changed

2 files changed

+1
-5
lines changed

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
"click>=7",
4747
"pathspec==0.9.0",
4848
"jsonpointer>=2.0",
49-
"reana-commons[yadage,snakemake,cwl]>=0.9.5,<0.10.0",
49+
"reana-commons[yadage,snakemake,cwl]>=0.9.6,<0.10.0",
5050
"tablib>=0.12.1,<0.13",
5151
"werkzeug>=0.14.1 ; python_version<'3.10'",
5252
"werkzeug>=0.15.0 ; python_version>='3.10'",

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)