diff options
author | idle sign <idlesign@yandex.ru> | 2016-12-10 15:23:49 +0700 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2016-12-10 11:23:00 -0500 |
commit | 35f3d1f37fdb137d5f5316058d49c96b9f28ca2d (patch) | |
tree | 5a85d809160ee34af3e32859256dc42a448f30a9 /setuptools/tests/test_config.py | |
parent | f85a821b039a03eb0231e6bd0fc925a4e37f3911 (diff) | |
download | external_python_setuptools-35f3d1f37fdb137d5f5316058d49c96b9f28ca2d.tar.gz external_python_setuptools-35f3d1f37fdb137d5f5316058d49c96b9f28ca2d.tar.bz2 external_python_setuptools-35f3d1f37fdb137d5f5316058d49c96b9f28ca2d.zip |
`test_ignore_errors` side effect mitigated.
Diffstat (limited to 'setuptools/tests/test_config.py')
-rw-r--r-- | setuptools/tests/test_config.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/setuptools/tests/test_config.py b/setuptools/tests/test_config.py index 677ccf2c..fa8d523b 100644 --- a/setuptools/tests/test_config.py +++ b/setuptools/tests/test_config.py @@ -98,6 +98,8 @@ class TestConfigurationReader: assert config_dict['metadata']['keywords'] == ['one', 'two'] assert 'version' not in config_dict['metadata'] + config.remove() + class TestMetadata: |