diff options
author | Benoit Pierre <benoit.pierre@gmail.com> | 2017-09-14 22:07:13 +0200 |
---|---|---|
committer | Benoit Pierre <benoit.pierre@gmail.com> | 2017-10-16 21:09:12 +0200 |
commit | 472c79f95cc41a3e85d6b212347d6b006c9c3c26 (patch) | |
tree | 65357a7db6125f53b3485d0221aba36a1304f64f /setuptools/tests/test_dist.py | |
parent | f2ad62e0543ea6dde2e91f08c0feed09fdd55724 (diff) | |
download | external_python_setuptools-472c79f95cc41a3e85d6b212347d6b006c9c3c26.tar.gz external_python_setuptools-472c79f95cc41a3e85d6b212347d6b006c9c3c26.tar.bz2 external_python_setuptools-472c79f95cc41a3e85d6b212347d6b006c9c3c26.zip |
support `setup_requires` in setup.cfg
Diffstat (limited to 'setuptools/tests/test_dist.py')
-rw-r--r-- | setuptools/tests/test_dist.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/setuptools/tests/test_dist.py b/setuptools/tests/test_dist.py index 435ffec0..c4c9bd03 100644 --- a/setuptools/tests/test_dist.py +++ b/setuptools/tests/test_dist.py @@ -39,6 +39,7 @@ def test_dist_fetch_build_egg(tmpdir): '''.split() with tmpdir.as_cwd(): dist = Distribution() + dist.parse_config_files() resolved_dists = [ dist.fetch_build_egg(r) for r in reqs |