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 5834e9b commit a68b8e2Copy full SHA for a68b8e2
.travis.yml
@@ -17,6 +17,12 @@ matrix:
17
apt:
18
packages:
19
- pandoc
20
+ script:
21
+ - cd docs
22
+ - make html
23
+ - make linkcheck
24
+ - cd ..
25
+ - python -m pytest_check_links
26
cache:
27
pip: true
28
directories:
@@ -27,15 +33,4 @@ before_install:
33
install:
34
- pip install --upgrade -e ".[test, examples, docs]"
29
35
script:
30
- - |
31
- if [[ $GROUP == python ]]; then
32
- py.test -l --nbval-lax --current-env examples;
- elif [[ $GROUP == docs ]]; then
- EXIT_STATUS=0
- cd docs
36
- make html || EXIT_STATUS=$?
37
- make linkcheck || EXIT_STATUS=$?
38
- cd ..
39
- python -m pytest_check_links || EXIT_STATUS=$? ;
40
- (exit $EXIT_STATUS)
41
- fi
+ - py.test -l --nbval-lax --current-env examples
0 commit comments