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 4fbbcf1 commit 0d68060Copy full SHA for 0d68060
2 files changed
setup.cfg
@@ -73,9 +73,12 @@ console_scripts=
73
tag_build = dev
74
75
[tool:pytest]
76
-addopts= --tb native -v -r fxX -W error
+addopts= --tb native -v -r fxX -p warnings
77
python_files=test/*test_*.py
78
python_classes=*Test
79
+filterwarnings =
80
+ error::DeprecationWarning:test
81
+ error::DeprecationWarning:mako
82
83
[upload]
84
sign = 1
test/ext/test_linguaplugin.py
@@ -18,6 +18,7 @@ class MockOptions:
18
class MakoExtractTest(TemplateTest):
19
@pytest.fixture(autouse=True)
20
def register_lingua_extractors(self):
21
+
22
from lingua.extractors import register_extractors
23
24
register_extractors()
0 commit comments