Skip to content

Commit 43eaa02

Browse files
committed
Fix travis.yml
1 parent df12084 commit 43eaa02

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,13 @@ install:
2323
- pip install --upgrade -e ".[test, examples, docs]"
2424
script:
2525
- if [[ $GROUP == python ]]; then
26-
py.test -l --nbval-lax --current-env examples
26+
py.test -l --nbval-lax --current-env examples;
2727
elif [[ $GROUP == docs ]]; then
2828
EXIT_STATUS=0
2929
cd docs
3030
make html || EXIT_STATUS=$?
3131
make linkcheck || EXIT_STATUS=$?
3232
cd ..
3333
python -m pytest_check_links || EXIT_STATUS=$?
34-
exit $EXIT_STATUS
34+
exit $EXIT_STATUS;
3535
fi

0 commit comments

Comments
 (0)