Skip to content

Commit

Permalink
bah
Browse files Browse the repository at this point in the history
  • Loading branch information
espenhgn committed Oct 2, 2024
1 parent 1df3433 commit 63d7d1b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_container_template.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ def test_container_template_python():

def test_container_template_python_script():
'''test that Python can run a script'''
cwd = os.getcwd() if runtime == 'docker' >= 0 else '.'
cwd = os.getcwd() if runtime == 'docker' else '.'
call = f'''{PREFIX_MOUNT} {cwd}/tests/extras/hello.py'''
out = subprocess.run(call.split(' '), capture_output=True)
assert out.returncode == 0
Expand Down

0 comments on commit 63d7d1b

Please sign in to comment.