forked from ARM-software/lisa
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpytest.ini
20 lines (20 loc) · 888 Bytes
/
pytest.ini
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
[pytest]
testpaths=tests
# Ignore DeprecationWarning on "from imp import reload" in the past module
# (from python-future)
filterwarnings =
error
ignore::DeprecationWarning:past.builtins.misc
# Avoid:
# .lisa-venv-3.9/lib/python3.9/site-packages/pkg_resources/_vendor/packaging/version.py:111: in __init__
# warnings.warn(
# DeprecationWarning: Creating a LegacyVersion has been deprecated and will be removed in the next major release
ignore::DeprecationWarning:pkg_resources.*:
# Ignore this warning: https://github.com/erdewit/nest_asyncio/issues/70
ignore::DeprecationWarning:nest_asyncio.*:
ignore::PendingDeprecationWarning::
ignore::DeprecationWarning:jupyter_client.*:
ignore::DeprecationWarning:devlib.*:
ignore::DeprecationWarning:bokeh.*:
ignore::DeprecationWarning:traitlets.*:
ignore::DeprecationWarning:future.*: