SeleniumBase/pytest.ini

40 lines
1.3 KiB
INI
Raw Normal View History

[pytest]
2019-05-16 12:25:42 +08:00
# Let console output be seen. Don't override the pytest plugin.
2019-04-06 05:32:43 +08:00
addopts = --capture=no --ignore conftest.py -p no:cacheprovider
2019-05-16 12:25:42 +08:00
2019-05-15 12:44:40 +08:00
# Ignore warnings such as DeprecationWarning and pytest.PytestUnknownMarkWarning
2020-04-18 13:11:53 +08:00
filterwarnings =
ignore::pytest.PytestWarning
ignore:.*U.*mode is deprecated:DeprecationWarning
2019-05-16 12:25:42 +08:00
# Configure the junit_family option explicitly:
junit_family = legacy
2019-11-05 14:54:02 +08:00
# Set pytest discovery rules:
# (Most of the rules here are similar to the default rules.)
# (unittest.TestCase rules override the rules here for classes and functions.)
python_files = test_*.py *_test.py *_tests.py *_suite.py
python_classes = Test* *Test* *Test *Tests *Suite
python_functions = test_*
2019-05-16 12:25:42 +08:00
# Here are the pytest markers used in the example tests:
# (pytest v4.5.0 and newer requires marker registration to prevent warnings.)
# (Future versions of pytest may turn those marker warnings into errors.)
markers =
marker1: custom marker
marker2: custom marker
marker3: custom marker
marker_test_suite: custom marker
expected_failure: custom marker
local: custom marker
remote: custom marker
offline: custom marker
develop: custom marker
qa: custom marker
ready: custom marker
master: custom marker
release: custom marker
staging: custom marker
production: custom marker