diff options
author | Massimiliano Culpo <massimiliano.culpo@gmail.com> | 2021-09-16 22:56:00 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-16 14:56:00 -0600 |
commit | 71a3173a329b61f9c31255465d713e86764b61e0 (patch) | |
tree | 8317ce64b11f5fb2248fb3a8a14d32271867a34e /pytest.ini | |
parent | e027cecff26f44a358544e30e3a4fd98b85a9233 (diff) | |
download | spack-71a3173a329b61f9c31255465d713e86764b61e0.tar.gz spack-71a3173a329b61f9c31255465d713e86764b61e0.tar.bz2 spack-71a3173a329b61f9c31255465d713e86764b61e0.tar.xz spack-71a3173a329b61f9c31255465d713e86764b61e0.zip |
Filter UserWarning out of test output (#26001)
Diffstat (limited to 'pytest.ini')
-rw-r--r-- | pytest.ini | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/pytest.ini b/pytest.ini index c381e07061..730658a778 100644 --- a/pytest.ini +++ b/pytest.ini @@ -3,6 +3,8 @@ addopts = --durations=30 -ra testpaths = lib/spack/spack/test python_files = *.py +filterwarnings = + ignore::UserWarning markers = db: tests that require creating a DB maybeslow: tests that may be slow (e.g. access a lot the filesystem, etc.) |