Skip to content

Commit

Permalink
Restore Python 3.7 compatibility.
Browse files Browse the repository at this point in the history
  • Loading branch information
jaraco committed Dec 12, 2022
1 parent b5a215d commit 7c9eee5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_scripts.py
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ def test_pkg_loaded_from_alternate_index(tmp_path):
},
tmp_path,
)
cmd = [sys.executable, '-m', 'pip-run', '-v', '--', tmp_path / 'script']
cmd = [sys.executable, '-m', 'pip-run', '-v', '--', str(tmp_path / 'script')]

out = subprocess.check_output(cmd, text=True)
assert 'Successfully imported path.py' in out
Expand Down

0 comments on commit 7c9eee5

Please sign in to comment.