Commit af30e013 authored by Jeremy Bowman's avatar Jeremy Bowman

Don't require network in tests

parent 1252d1b3
Fixed tests which failed without network connectivity.
...@@ -233,27 +233,27 @@ class TestEggInfo(object): ...@@ -233,27 +233,27 @@ class TestEggInfo(object):
''' '''
install_requires_deterministic install_requires_deterministic
install_requires=["fake-factory==0.5.2", "pytz"] install_requires=["wheel>=0.5", "pytest"]
[options] [options]
install_requires = install_requires =
fake-factory==0.5.2 wheel>=0.5
pytz pytest
fake-factory==0.5.2 wheel>=0.5
pytz pytest
''', ''',
''' '''
install_requires_ordered install_requires_ordered
install_requires=["fake-factory>=1.12.3,!=2.0"] install_requires=["pytest>=3.0.2,!=10.9999"]
[options] [options]
install_requires = install_requires =
fake-factory>=1.12.3,!=2.0 pytest>=3.0.2,!=10.9999
fake-factory!=2.0,>=1.12.3 pytest!=10.9999,>=3.0.2
''', ''',
''' '''
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment