We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c26d89b commit bf71918Copy full SHA for bf71918
2 files changed
.travis.yml
@@ -20,22 +20,10 @@ addons:
20
apt:
21
packages:
22
- portaudio19-dev
23
-before_install:
24
-- pip install --upgrade pip wheel virtualenv
25
-- if [ $TRAVIS_SECURE_ENV_VARS == "true" ]; then
26
- openssl aes-256-cbc -k "$secrets_password" -in secrets.tar.enc -out secrets.tar -d;
27
- tar xvf secrets.tar;
28
- fi
29
install:
+- pip install --upgrade pip wheel virtualenv
30
- pip install nox-automation coverage
31
script:
32
33
- source ${TRAVIS_BUILD_DIR}/testing/resources/test-env.sh;
34
- nox --stop-on-first-error -s lint travis;
35
- else
36
- # only run lint on external PRs
37
- nox --stop-on-first-error -s lint;
38
39
-
+- ./scripts/travis.sh
40
after_script:
41
- coverage report
scripts/run-tests.py
0 commit comments