From 72397f6dcefb10f95650190991320aeb8d781cba Mon Sep 17 00:00:00 2001 From: "oleg.hoefling" Date: Sun, 25 Oct 2020 18:34:47 +0100 Subject: [PATCH] change markers list name to DEFAULT_ENABLED_MARKERS Signed-off-by: oleg.hoefling --- sphinx/testing/fixtures.py | 4 ++-- 1 file 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)