Skip to content

Commit

Permalink
removing psi plugin from one test
Browse files Browse the repository at this point in the history
  • Loading branch information
djarecka committed Oct 28, 2023
1 parent bd76c3d commit 979bb60
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pydra/engine/tests/test_environments.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ def test_docker_1(tmp_path):

@no_win
@need_docker
def test_docker_1_subm(tmp_path, plugin):
def test_docker_1_subm(tmp_path):
"""docker env with submitter: simple command, no arguments"""
newcache = lambda x: makedir(tmp_path, x)

Expand All @@ -97,14 +97,14 @@ def test_docker_1_subm(tmp_path, plugin):
cache_dir=newcache("shelly_env"),
environment=docker,
)
with Submitter(plugin=plugin) as sub:
with Submitter(plugin="cf") as sub:
shelly_env(submitter=sub)
assert env_res == shelly_env.result().output.__dict__

shelly_call = ShellCommandTask(
name="shelly", executable=cmd, cache_dir=newcache("shelly_call")
)
with Submitter(plugin=plugin) as sub:
with Submitter(plugin="cf") as sub:
shelly_call(submitter=sub, environment=docker)
assert env_res == shelly_call.result().output.__dict__

Expand Down

0 comments on commit 979bb60

Please sign in to comment.