2015-11-30 05:40:23 +00:00
|
|
|
language: python
|
2016-07-30 16:10:33 +00:00
|
|
|
|
2016-08-22 15:22:42 +00:00
|
|
|
# Construct build matrix
|
2015-11-30 05:40:23 +00:00
|
|
|
python:
|
2016-08-22 15:22:42 +00:00
|
|
|
- 2.6
|
|
|
|
- 2.7
|
|
|
|
|
2016-07-30 16:10:33 +00:00
|
|
|
env:
|
2016-10-15 21:21:50 +00:00
|
|
|
- TEST_SUITE=unit CYAML=true
|
|
|
|
- TEST_SUITE=unit CYAML=false
|
2016-08-22 15:22:42 +00:00
|
|
|
- TEST_SUITE=flake8
|
|
|
|
- TEST_SUITE=doc
|
2016-07-30 16:10:33 +00:00
|
|
|
|
|
|
|
matrix:
|
|
|
|
exclude:
|
2016-08-22 15:22:42 +00:00
|
|
|
- python: 2.6
|
|
|
|
# Flake8 no longer supports Python 2.6
|
2016-08-23 16:51:44 +00:00
|
|
|
env: TEST_SUITE=flake8
|
2015-11-30 05:40:23 +00:00
|
|
|
|
2015-11-30 06:09:11 +00:00
|
|
|
# Use new Travis infrastructure (Docker can't sudo yet)
|
|
|
|
sudo: false
|
|
|
|
|
2016-08-31 03:07:21 +00:00
|
|
|
# Docs need graphviz to build
|
|
|
|
addons:
|
|
|
|
apt:
|
|
|
|
packages:
|
|
|
|
- graphviz
|
2016-10-15 21:21:50 +00:00
|
|
|
- libyaml-dev
|
2016-08-31 03:07:21 +00:00
|
|
|
|
2016-08-22 15:22:42 +00:00
|
|
|
# Install various dependencies
|
2016-01-19 17:29:39 +00:00
|
|
|
install:
|
2016-08-22 15:22:42 +00:00
|
|
|
- pip install coveralls
|
|
|
|
- pip install flake8
|
|
|
|
- pip install sphinx
|
|
|
|
- pip install mercurial
|
2016-10-15 21:21:50 +00:00
|
|
|
- if [[ $CYAML == true ]]; then pip install --global-option "--with-libyaml" pyyaml; fi
|
2015-11-30 05:40:23 +00:00
|
|
|
|
2016-08-22 15:22:42 +00:00
|
|
|
before_script:
|
2015-11-30 05:40:23 +00: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 06:45:41 +00:00
|
|
|
|
2016-01-19 17:29:39 +00:00
|
|
|
# Need this to be able to compute the list of changed files
|
|
|
|
- git fetch origin develop:develop
|
2015-11-30 05:40:23 +00:00
|
|
|
|
2016-08-22 15:22:42 +00:00
|
|
|
script: share/spack/qa/run-$TEST_SUITE-tests
|
2016-01-19 17:29:39 +00:00
|
|
|
|
|
|
|
after_success:
|
2016-10-15 21:21:50 +00:00
|
|
|
- if [[ $TEST_SUITE == unit && $CYAML == false && $TRAVIS_PYTHON_VERSION == 2.7 ]]; then coveralls; fi
|
2015-11-30 05:40:23 +00:00
|
|
|
|
|
|
|
notifications:
|
|
|
|
email:
|
2016-08-22 15:22:42 +00:00
|
|
|
recipients: tgamblin@llnl.gov
|
2015-11-30 05:40:23 +00:00
|
|
|
on_success: change
|
|
|
|
on_failure: always
|