Adds files which have been encrypted by Travis and decrypts those files in scripts/run_system_tests.sh using a key and initialization vector (iv) provided by the Travis environment for this project.
22 lines
368 B
YAML
22 lines
368 B
YAML
language: python
|
|
python: 2.7
|
|
sudo: false
|
|
env:
|
|
matrix:
|
|
- TOX_ENV=py26
|
|
- TOX_ENV=py27
|
|
- TOX_ENV=py33
|
|
- TOX_ENV=py34
|
|
- TOX_ENV=pypy
|
|
- TOX_ENV=docs
|
|
- TOX_ENV=system-tests
|
|
- TOX_ENV=system-tests3
|
|
install:
|
|
- pip install tox
|
|
script:
|
|
- tox -e $TOX_ENV
|
|
after_success:
|
|
- if [[ "${TOX_ENV}" == "py27" ]]; then tox -e coveralls; fi
|
|
notifications:
|
|
email: false
|