Avoid universal newlines even more

This commit is contained in:
Dave Halter
2020-03-01 01:12:47 +01:00
parent a2b8c44e8f
commit fd23946de3
5 changed files with 11 additions and 8 deletions

View File

@@ -118,9 +118,9 @@ def test_create_environment_executable():
assert environment.executable == sys.executable
def test_get_default_environment_from_env_does_not_use_safe(tmpdir, monkeypatch):
def test_get_default_environment_from_env_does_not_use_safe(tmpdir, monkeypatch, skip_python2):
fake_python = os.path.join(str(tmpdir), 'fake_python')
with open(fake_python, 'w') as f:
with open(fake_python, 'w', newline='') as f:
f.write('')
def _get_subprocess(self):