We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
git_helper
1 parent c4fb85d commit 586b8fbCopy full SHA for 586b8fb
.github/workflows/docs_test_action.yml
@@ -10,5 +10,6 @@ jobs:
10
- uses: actions/checkout@v1
11
- uses: ammaraskar/sphinx-action@master
12
with:
13
- pre-build-command: python -m pip install --upgrade -r requirements.txt
+ pre-build-command: python -m pip install tox
14
docs-folder: "doc-source/"
15
+ build-command: "tox -e docs -- "
tox.ini
@@ -44,11 +44,11 @@ commands =
44
45
46
[testenv:docs]
47
-basepython = python3.6
+basepython = python3.8
48
changedir={toxinidir}/doc-source
49
deps = -r{toxinidir}/requirements.txt
50
-r{toxinidir}/doc-source/requirements.txt
51
-commands = sphinx-build -M html . ./build
+commands = sphinx-build -M html . ./build {posargs}
52
53
54
0 commit comments