Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/sphinx-doc/sphinx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoroleg.hoefling <oleg.hoefling@gmail.com>2020-10-25 13:44:39 +0300
committeroleg.hoefling <oleg.hoefling@gmail.com>2020-10-25 13:44:39 +0300
commit30f3ac6fe7ec426eef07811c445aae217ee4d725 (patch)
tree2239917a52f9d41e16aecf307b3754c5172eaeac /sphinx/testing
parent3c3216fa40a8d30b5dd9bc97be7273c99394483b (diff)
rename public markers to default markers
Signed-off-by: oleg.hoefling <oleg.hoefling@gmail.com>
Diffstat (limited to 'sphinx/testing')
-rw-r--r--sphinx/testing/fixtures.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/sphinx/testing/fixtures.py b/sphinx/testing/fixtures.py
index cd296e71c..5e72ed530 100644
--- a/sphinx/testing/fixtures.py
+++ b/sphinx/testing/fixtures.py
@@ -22,7 +22,7 @@ from sphinx.testing import util
from sphinx.testing.util import SphinxTestApp, SphinxTestAppWrapperForSkipBuilding
-PUBLIC_MARKERS = [
+DEFAULT_MARKERS = [
(
'sphinx(builder, testroot=None, freshenv=False, confoverrides=None, tags=None,'
' docutilsconf=None, parallel=0): arguments to initialize the sphinx test application.'
@@ -33,7 +33,7 @@ PUBLIC_MARKERS = [
def pytest_configure(config):
# register custom markers
- for marker in PUBLIC_MARKERS:
+ for marker in DEFAULT_MARKERS:
config.addinivalue_line('markers', marker)