Skip to content

Commit 5eee2ff

Browse files
committed
2 parents e8f6869 + a595a0f commit 5eee2ff

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.readthedocs.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ python:
33
install:
44
- path: .
55
extra_requirements:
6-
- docs
6+
- doc
77

88
# required boilerplate readthedocs/readthedocs.org#10401
99
build:

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ dynamic = ["version"]
2727
Homepage = "https://github.com/python/importlib_metadata"
2828

2929
[project.optional-dependencies]
30-
testing = [
30+
test = [
3131
# upstream
3232
"pytest >= 6, != 8.1.*",
3333
"pytest-checkdocs >= 2.4",
@@ -44,7 +44,7 @@ testing = [
4444
"pytest-perf >= 0.9.2",
4545
"jaraco.test >= 5.4",
4646
]
47-
docs = [
47+
doc = [
4848
# upstream
4949
"sphinx >= 3.5",
5050
"jaraco.packaging >= 9.3",

tox.ini

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ passenv =
99
HOME
1010
usedevelop = True
1111
extras =
12-
testing
12+
test
1313

1414
[testenv:diffcov]
1515
description = run tests and check that diff from main is covered
@@ -24,8 +24,8 @@ commands =
2424
[testenv:docs]
2525
description = build the documentation
2626
extras =
27-
docs
28-
testing
27+
doc
28+
test
2929
changedir = docs
3030
commands =
3131
python -m sphinx -W --keep-going . {toxinidir}/build/html

0 commit comments

Comments
 (0)