-
-
Notifications
You must be signed in to change notification settings - Fork 629
/
pytest.ini
20 lines (19 loc) · 917 Bytes
/
pytest.ini
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
[pytest]
norecursedirs =
.nox # generated virtualenvs
build # generated build directory
contrib # contributed plugins
website # No python code
plugins # tested separately under nox
examples/plugins # tested separately under nox
examples # tested separately under nox
tests/standalone_apps # tested separately under nox
tools # tools are tested individually
filterwarnings =
error
; Remove when default changes
ignore:.*Future Hydra versions will no longer change working directory at job runtime by default.*:UserWarning
; Jupyter notebook test on Windows yield warnings
ignore:.*Proactor event loop does not implement add_reader family of methods required for zmq.*:RuntimeWarning
; Ignore deprecation warning related to pkg_resources
ignore:.*pkg_resources is deprecated*