diff options
| -rw-r--r-- | setuptools/tests/test_egg_info.py | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/setuptools/tests/test_egg_info.py b/setuptools/tests/test_egg_info.py index d4b79d63..0810ee3b 100644 --- a/setuptools/tests/test_egg_info.py +++ b/setuptools/tests/test_egg_info.py @@ -231,6 +231,20 @@ class TestEggInfo(object): # expected contents of requires.txt ''' + install_requires_deterministic + + install_requires=["fake-factory==0.5.2", "pytz"] + + [options] + install_requires = + fake-factory==0.5.2 + pytz + + fake-factory==0.5.2 + pytz + ''', + + ''' install_requires_with_marker install_requires=["barbazquux;{mismatch_marker}"], |
