Skip to content

Commit 32994df

Browse files
committed
Update pytest.ini
1 parent f71045f commit 32994df

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

pytest.ini

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
[pytest]
2+
23
# Let console output be seen. Don't override the pytest plugin.
34
addopts = --capture=no --ignore conftest.py -p no:cacheprovider
5+
46
# Ignore warnings such as DeprecationWarning and pytest.PytestUnknownMarkWarning
57
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

Comments
 (0)