Skip to content

Commit

Permalink
Fix tests on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
AWhetter committed Sep 19, 2021
1 parent f175525 commit 5463145
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mypy/test/testcmdline.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ def test_python_cmdline(testcase: DataDrivenTestCase, step: int) -> None:
extra_path = os.path.join(os.path.abspath(test_temp_dir), 'pypath')
env['PYTHONPATH'] = PREFIX
if os.path.isdir(extra_path):
env['PYTHONPATH'] += ':' + extra_path
env['PYTHONPATH'] += os.pathsep + extra_path
process = subprocess.Popen(fixed + args,
stdout=subprocess.PIPE,
stderr=subprocess.PIPE,
Expand Down

0 comments on commit 5463145

Please sign in to comment.