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.
1 parent 8922dd8 commit 368ec01Copy full SHA for 368ec01
pyproject.toml
@@ -15,5 +15,13 @@ skip-string-normalization = true
15
profile = "black"
16
# known_first_party = "foo"
17
18
+[tool.pytest.ini_options]
19
+# ensure we treat warnings as error
20
+filterwarnings = [
21
+ # "error",
22
+ "error::DeprecationWarning",
23
+ "error::PendingDeprecationWarning"
24
+]
25
+
26
[tool.setuptools_scm]
27
local_scheme = "no-local-version"
tox.ini
@@ -65,8 +65,3 @@ commands =
65
twine check --strict {toxinidir}/dist/*
66
# Install the wheel
67
sh -c "python3 -m pip install --force-reinstall {toxinidir}/dist/*.whl"
68
-
69
-[pytest]
70
-filterwarnings =
71
- error::DeprecationWarning
72
- error::PendingDeprecationWarning
0 commit comments