Skip to content

Commit

Permalink
Don't decrypt on PR
Browse files Browse the repository at this point in the history
  • Loading branch information
Bill Prin committed Jun 30, 2016
1 parent 5d278e5 commit f7c4445
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,16 @@ addons:
- portaudio19-dev
before_install:
- pip install --upgrade pip wheel virtualenv
- openssl aes-256-cbc -k "$secrets_password" -in secrets.tar.enc -out secrets.tar -d
- tar xvf secrets.tar
- if [ $TRAVIS_SECURE_ENV_VARS == "true" ]; then
openssl aes-256-cbc -k "$secrets_password" -in secrets.tar.enc -out secrets.tar -d;
tar xvf secrets.tar;
fi
install:
- pip install nox-automation coverage
script:
- source ${TRAVIS_BUILD_DIR}/testing/resources/test-env.sh
- nox --stop-on-first-error -s lint travis
- if [ $TRAVIS_SECURE_ENV_VARS == "true" ] ; then
source ${TRAVIS_BUILD_DIR}/testing/resources/test-env.sh;
fi
- nox --stop-on-first-error -s lint
after_script:
- coverage report

0 comments on commit f7c4445

Please sign in to comment.