Skip to content

Commit 2b084af

Browse files
committed
cleaned up xfail
1 parent 5852cdd commit 2b084af

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

pydra/compose/shell/tests/test_shell_run.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2251,9 +2251,7 @@ class Outputs(shell.Outputs):
22512251

22522252

22532253
@pytest.mark.xfail(
2254-
sys.platform == "linux"
2255-
and sys.version_info < (3, 12)
2256-
and os.environ.get("DEPENDS") == "pre",
2254+
sys.platform == "linux" and os.environ.get("TOX_ENV_NAME") == "py311-pre",
22572255
reason="I'm not sure why this is failing only on this part of the test matrix, hoping it will just go away :)",
22582256
)
22592257
@pytest.mark.parametrize("results_function", [run_no_submitter, run_submitter])
@@ -2296,8 +2294,6 @@ class Outputs(shell.Outputs):
22962294
files_id=new_files_id,
22972295
)
22982296

2299-
raise Exception(str(os.environ))
2300-
23012297
outputs = results_function(shelly, worker=worker, cache_root=tmp_path)
23022298
assert outputs.stdout == ""
23032299
for file in outputs.new_files:

0 commit comments

Comments
 (0)