Skip to content

Commit

Permalink
Restore compatibility on Windows older Pythons.
Browse files Browse the repository at this point in the history
  • Loading branch information
jaraco committed Dec 10, 2022
1 parent a6c0ad8 commit a9170ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pip_run/tests/test_scripts.py
Original file line number Diff line number Diff line change
Expand Up @@ -201,6 +201,6 @@ def test_pkg_loaded_from_url(tmp_path):
)

script = tmp_path.joinpath('script_dir', 'script')
cmd = [sys.executable, '-m', 'pip-run', '--no-index', '--', script]
cmd = [sys.executable, '-m', 'pip-run', '--no-index', '--', str(script)]
out = subprocess.check_output(cmd, universal_newlines=True)
assert 'Successfully imported barbazquux.py' in out

0 comments on commit a9170ae

Please sign in to comment.