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.
1 parent ea28703 commit 540e6c5Copy full SHA for 540e6c5
.travis.yml
@@ -27,7 +27,7 @@ script:
27
- py.test
28
- npm test
29
# Check links in markdown files:
30
- - python -m pytest_check_links -k .md
+ - python -m pytest_check_links --links-ext=.md -o testpaths=. -o addopts=
31
# Check docs can be build + links
32
- pushd docs
33
- make html
{{cookiecutter.github_project_name}}/.travis.yml
@@ -63,7 +63,7 @@ script:
63
make html || EXIT_STATUS=$?
64
make linkcheck || EXIT_STATUS=$?
65
cd ..
66
- python -m pytest_check_links || EXIT_STATUS=$?
+ python -m pytest_check_links --links-ext=.md -o testpaths=. -o addopts= || EXIT_STATUS=$?
67
(exit $EXIT_STATUS)
68
fi
69
after_success:
0 commit comments