We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
DeprecationWarning
1 parent 788f686 commit a4fb139Copy full SHA for a4fb139
setup.cfg
@@ -21,10 +21,15 @@ python_files =
21
test_*.py
22
# doctest_plus = disabled
23
addopts =
24
- --strict
+ --strict-markers
25
--doctest-modules
26
--color=yes
27
--disable-pytest-warnings
28
+filterwarnings =
29
+ # error out on deprecation warnings - ensures the code and tests are kept up-to-date
30
+ error::DeprecationWarning
31
+ # TensorBoard is using NumPy deprecations: ignore them
32
+ ignore::DeprecationWarning:tensorboard.*
33
34
junit_duration_report = call
35
0 commit comments