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 f71045f commit 32994dfCopy full SHA for 32994df
pytest.ini
@@ -1,5 +1,17 @@
1
[pytest]
2
+
3
# Let console output be seen. Don't override the pytest plugin.
4
addopts = --capture=no --ignore conftest.py -p no:cacheprovider
5
6
# Ignore warnings such as DeprecationWarning and pytest.PytestUnknownMarkWarning
7
filterwarnings = ignore::pytest.PytestWarning
8
9
+# Here are the pytest markers used in the example tests:
10
+# (pytest v4.5.0 and newer requires marker registration to prevent warnings.)
11
+# (Future versions of pytest may turn those marker warnings into errors.)
12
+markers =
13
+ marker1: custom marker
14
+ marker2: custom marker
15
+ marker3: custom marker
16
+ marker_test_suite: custom marker
17
+ expected_failure: custom marker
0 commit comments