diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2020-03-08 13:49:03 -0400 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2020-03-08 13:49:03 -0400 |
commit | dd250ca952bb3f109086eca3353b65a92fbcbf4d (patch) | |
tree | 565e7a2e244fa2137a1308c4da72b9081ebd33b0 | |
parent | e63e131686be6bae3249a67958bdb2ef5abd1622 (diff) | |
download | external_python_setuptools-dd250ca952bb3f109086eca3353b65a92fbcbf4d.tar.gz external_python_setuptools-dd250ca952bb3f109086eca3353b65a92fbcbf4d.tar.bz2 external_python_setuptools-dd250ca952bb3f109086eca3353b65a92fbcbf4d.zip |
Suppress RuntimeWarning from sandbox module on Python 2
-rw-r--r-- | pytest.ini | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -9,3 +9,7 @@ filterwarnings = ignore:bdist_wininst command is deprecated # Suppress this error; unimportant for CI tests ignore:Extraction path is writable by group/others:UserWarning + # Suppress Python 2 deprecation warning + ignore:Setuptools will stop working on Python 2:UserWarning + # Suppress weird RuntimeWarning. + ignore:Parent module 'setuptools' not found while handling absolute import:RuntimeWarning |