diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2020-05-25 16:35:24 -0400 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2020-05-25 16:35:24 -0400 |
commit | 81aab2da23caf1a66298847d93b209ba16eb878e (patch) | |
tree | 12e6f9c8d4fa3658f1e96b2feb8c7daf500846fc | |
parent | 151599602b9d626ebcfe5ae6960ea216b767fec2 (diff) | |
download | external_python_setuptools-81aab2da23caf1a66298847d93b209ba16eb878e.tar.gz external_python_setuptools-81aab2da23caf1a66298847d93b209ba16eb878e.tar.bz2 external_python_setuptools-81aab2da23caf1a66298847d93b209ba16eb878e.zip |
Ignore distutils when running tests.
-rw-r--r-- | conftest.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/conftest.py b/conftest.py index 1746bfb5..3f7e59b4 100644 --- a/conftest.py +++ b/conftest.py @@ -14,6 +14,7 @@ def pytest_addoption(parser): collect_ignore = [ 'tests/manual_test.py', 'setuptools/tests/mod_with_constant.py', + 'distutils', ] |