2015-11-30 13:40:23 +08:00
|
|
|
language: python
|
2016-07-31 00:10:33 +08:00
|
|
|
|
2016-08-22 23:22:42 +08:00
|
|
|
# Construct build matrix
|
2015-11-30 13:40:23 +08:00
|
|
|
python:
|
2016-08-22 23:22:42 +08:00
|
|
|
- 2.6
|
|
|
|
- 2.7
|
|
|
|
|
2016-07-31 00:10:33 +08:00
|
|
|
env:
|
2016-08-22 23:22:42 +08:00
|
|
|
- TEST_SUITE=unit
|
|
|
|
- TEST_SUITE=flake8
|
|
|
|
- TEST_SUITE=doc
|
2016-07-31 00:10:33 +08:00
|
|
|
|
|
|
|
matrix:
|
|
|
|
exclude:
|
2016-08-22 23:22:42 +08:00
|
|
|
- python: 2.6
|
|
|
|
# Flake8 no longer supports Python 2.6
|
2016-08-24 00:51:44 +08:00
|
|
|
env: TEST_SUITE=flake8
|
2015-11-30 13:40:23 +08:00
|
|
|
|
2015-11-30 14:09:11 +08:00
|
|
|
# Use new Travis infrastructure (Docker can't sudo yet)
|
|
|
|
sudo: false
|
|
|
|
|
2016-08-31 11:07:21 +08:00
|
|
|
# Docs need graphviz to build
|
|
|
|
addons:
|
|
|
|
apt:
|
|
|
|
packages:
|
|
|
|
- graphviz
|
|
|
|
|
2016-08-22 23:22:42 +08:00
|
|
|
# Install various dependencies
|
2016-01-20 01:29:39 +08:00
|
|
|
install:
|
2016-08-22 23:22:42 +08:00
|
|
|
- pip install coveralls
|
|
|
|
- pip install flake8
|
|
|
|
- pip install sphinx
|
|
|
|
- pip install mercurial
|
2015-11-30 13:40:23 +08:00
|
|
|
|
2016-08-22 23:22:42 +08:00
|
|
|
before_script:
|
2015-11-30 13:40:23 +08:00
|
|
|
# Need this for the git tests to succeed.
|
|
|
|
- git config --global user.email "spack@example.com"
|
|
|
|
- git config --global user.name "Test User"
|
2016-05-11 14:45:41 +08:00
|
|
|
|
2016-01-20 01:29:39 +08:00
|
|
|
# Need this to be able to compute the list of changed files
|
|
|
|
- git fetch origin develop:develop
|
2015-11-30 13:40:23 +08:00
|
|
|
|
2016-08-22 23:22:42 +08:00
|
|
|
script: share/spack/qa/run-$TEST_SUITE-tests
|
2016-01-20 01:29:39 +08:00
|
|
|
|
|
|
|
after_success:
|
2016-08-24 00:51:44 +08:00
|
|
|
- if [[ $TEST_SUITE == unit && $TRAVIS_PYTHON_VERSION == 2.7 ]]; then coveralls; fi
|
2015-11-30 13:40:23 +08:00
|
|
|
|
|
|
|
notifications:
|
|
|
|
email:
|
2016-08-22 23:22:42 +08:00
|
|
|
recipients: tgamblin@llnl.gov
|
2015-11-30 13:40:23 +08:00
|
|
|
on_success: change
|
|
|
|
on_failure: always
|