Skip to content
This repository has been archived by the owner on Sep 8, 2024. It is now read-only.

Commit

Permalink
Merge pull request #2745 from forslund/test/travis-build-mimic-once
Browse files Browse the repository at this point in the history
Only build mimic once during travis tests
  • Loading branch information
forslund committed Nov 4, 2020
2 parents 4aebf3c + e3e01ee commit 6802694
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,9 @@ install:
- rm -rf ${TMPDIR}
- mkdir ${TMPDIR}
- echo ${TMPDIR}
- VIRTUALENV_ROOT=${VIRTUAL_ENV} ./dev_setup.sh
- if [[ $TRAVIS_PYTHON_VERSION == 3.9 ]]; then VIRTUALENV_ROOT=${VIRTUAL_ENV} ./dev_setup.sh; fi
# Skip mimic build for other versions because they should not differ
- if [[ $TRAVIS_PYTHON_VERSION != 3.9 ]]; then VIRTUALENV_ROOT=${VIRTUAL_ENV} ./dev_setup.sh -sm; fi
# command to run tests
script:
- pycodestyle mycroft test
Expand Down

0 comments on commit 6802694

Please sign in to comment.