summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoroleg.hoefling <oleg.hoefling@gmail.com>2020-10-25 11:44:39 +0100
committeroleg.hoefling <oleg.hoefling@gmail.com>2020-10-25 11:44:39 +0100
commit30f3ac6fe7ec426eef07811c445aae217ee4d725 (patch)
tree2239917a52f9d41e16aecf307b3754c5172eaeac
parent3c3216fa40a8d30b5dd9bc97be7273c99394483b (diff)
downloadsphinx-git-30f3ac6fe7ec426eef07811c445aae217ee4d725.tar.gz
rename public markers to default 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 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)