Skip to content

Commit

Permalink
Add workaround for Python 3.4 on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
sambrightman authored and shalupov committed Feb 15, 2019
1 parent f28716f commit 967915b
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion tests/integration-tests/unittest_integration_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -504,7 +504,10 @@ def test_twisted_trial(venv):
if os.name == 'nt':
if sys.version_info < (2, 7):
pytest.skip("pypiwin32 is available since Python 2.7")
packages.append("pypiwin32")
elif sys.version_info[:2] == (3, 4):
packages.append("pypiwin32==219")
else:
packages.append("pypiwin32")
venv_with_twisted = virtual_environments.prepare_virtualenv(packages)

env = virtual_environments.get_clean_system_environment()
Expand Down

0 comments on commit 967915b

Please sign in to comment.