diff options
| author | Jeremy Bowman <jbowman@edx.org> | 2018-05-16 16:23:39 -0400 |
|---|---|---|
| committer | Jeremy Bowman <jbowman@edx.org> | 2018-05-16 16:35:08 -0400 |
| commit | af30e013a27c310b423331314fdbee1f93d2172f (patch) | |
| tree | 57f61d31e67c5408e114f4e9875d338077cc73e8 | |
| parent | 1252d1b3b34261acd6c8051c4fe97f206a7118b7 (diff) | |
| download | python-setuptools-git-af30e013a27c310b423331314fdbee1f93d2172f.tar.gz | |
Don't require network in tests
| -rw-r--r-- | changelog.d/1368.misc.rst | 1 | ||||
| -rw-r--r-- | setuptools/tests/test_egg_info.py | 16 |
2 files changed, 9 insertions, 8 deletions
diff --git a/changelog.d/1368.misc.rst b/changelog.d/1368.misc.rst new file mode 100644 index 00000000..289e6a68 --- /dev/null +++ b/changelog.d/1368.misc.rst @@ -0,0 +1 @@ +Fixed tests which failed without network connectivity. diff --git a/setuptools/tests/test_egg_info.py b/setuptools/tests/test_egg_info.py index 2a070deb..4397d064 100644 --- a/setuptools/tests/test_egg_info.py +++ b/setuptools/tests/test_egg_info.py @@ -233,27 +233,27 @@ class TestEggInfo(object): ''' install_requires_deterministic - install_requires=["fake-factory==0.5.2", "pytz"] + install_requires=["wheel>=0.5", "pytest"] [options] install_requires = - fake-factory==0.5.2 - pytz + wheel>=0.5 + pytest - fake-factory==0.5.2 - pytz + wheel>=0.5 + pytest ''', ''' install_requires_ordered - install_requires=["fake-factory>=1.12.3,!=2.0"] + install_requires=["pytest>=3.0.2,!=10.9999"] [options] 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 ''', ''' |
