summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoroleg.hoefling <oleg.hoefling@gmail.com>2020-10-25 18:34:47 +0100
committeroleg.hoefling <oleg.hoefling@gmail.com>2020-10-25 18:34:47 +0100
commit72397f6dcefb10f95650190991320aeb8d781cba (patch)
treefb62c76516dcba6f3ab3ca21fcdffd1c2e807fcd
parent30f3ac6fe7ec426eef07811c445aae217ee4d725 (diff)
downloadsphinx-git-72397f6dcefb10f95650190991320aeb8d781cba.tar.gz
change markers list name to DEFAULT_ENABLED_MARKERS
Signed-off-by: oleg.hoefling <oleg.hoefling@gmail.com>
-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 5e72ed530..f457e3745 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
-DEFAULT_MARKERS = [
+DEFAULT_ENABLED_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 @@ DEFAULT_MARKERS = [
def pytest_configure(config):
# register custom markers
- for marker in DEFAULT_MARKERS:
+ for marker in DEFAULT_ENABLED_MARKERS:
config.addinivalue_line('markers', marker)