Skip to content
This repository has been archived by the owner on Jun 26, 2021. It is now read-only.

Commit

Permalink
Update .travis.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
justusschock committed Jul 24, 2019
1 parent 63f2a33 commit 3b6f673
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ matrix:
before_install:
- if [[ "$TEST_TYPE" == "unittests" ]]; then
bash scripts/ci/install_before_tests.sh;
pip install codecov;
else
bash scripts/ci/install_before_style_check.sh;
pip install -r docs/requirements.txt;
Expand All @@ -48,6 +49,11 @@ script:
- if [[ "$TRAVIS_PYTHON_VERSION" == 3.7 ]] && [[ "$TEST_TYPE" == "style-check" ]]; then
bash scripts/ci/build_docs.sh;
fi

after_success:
- if [[ "$TEST_TYPE" == "unittests" ]]; then
codecov;
fi

before_deploy:
- cd $TRAVIS_BUILD_DIR
Expand Down

0 comments on commit 3b6f673

Please sign in to comment.