@@ -7,7 +7,7 @@ jobs:
name: Linux
strategy:
matrix:
- group: [integrity, docs, changelog, python, usage, nonode]
+ group: [integrity, docs, docs2, python, usage, nonode]
python: [3.5, 3.8]
exclude:
- group: integrity
@@ -52,9 +52,6 @@ fi
if [[ $GROUP == docs ]]; then
- # Run the link check - allow for a link to fail once (--lf means only run last failed)
- py.test --check-links -k .md . || py.test --check-links -k .md --lf .
-
# Build the docs
jlpm build:packages
jlpm docs
@@ -77,8 +74,11 @@ fi
-if [[ $GROUP == changelog ]]; then
+if [[ $GROUP == docs2 ]]; then
+ # Run the link check on raw md files - allow for a link to fail once (--lf means only run last failed)
+ py.test --check-links -k .md . || py.test --check-links -k .md --lf .
+
+ # Run the link check on the changelog - allow for a link to fail once (--lf means only run last failed)
changelog=./docs/source/getting_started/changelog.rst
py.test --check-links $changlog || py.test --check-links --lf $changelog
fi