We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
pytest.ini
0 parents commit 03458c1Copy full SHA for 03458c1
pytest.ini
@@ -0,0 +1,17 @@
1
+[pytest]
2
+addopts = -v -x --cov=app --cov-report=term-missing
3
+pythonpath = .
4
+filterwarnings =
5
+ ignore:.*:DeprecationWarning
6
+ ignore:.*:UserWarning
7
+ ignore:.*:RuntimeWarning
8
+ ignore:.*:PendingDeprecationWarning
9
+ ignore:.*:UnicodeWarning
10
+ ignore:.*:ResourceWarning
11
+ ignore:.*:FutureWarning
12
+ ignore:.*:ImportWarning
13
+ ignore:.*:SyntaxWarning
14
+ ignore:.*:BytesWarning
15
16
17
0 commit comments