summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorAdam J. Stewart <ajstewart426@gmail.com>2016-08-23 11:51:44 -0500
committerAdam J. Stewart <ajstewart426@gmail.com>2016-08-30 15:21:15 -0500
commita235d030ac6fda67da382d57f663bba004f32619 (patch)
tree03404bc2690cbf653357c35b9b6ca363bf435b07 /.travis.yml
parent7f9d098c2ff7e25a55bb3a69bd9d7314af1f9abc (diff)
downloadspack-a235d030ac6fda67da382d57f663bba004f32619.tar.gz
spack-a235d030ac6fda67da382d57f663bba004f32619.tar.bz2
spack-a235d030ac6fda67da382d57f663bba004f32619.tar.xz
spack-a235d030ac6fda67da382d57f663bba004f32619.zip
Fix typos and bugs in Travis config file
Forgot to change one of the TEST_TYPEs to TEST_SUITE. -eq not working, trying == instead. Cache doesn't seem to be working, removed.
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml7
1 files changed, 2 insertions, 5 deletions
diff --git a/.travis.yml b/.travis.yml
index f6c6817121..f9bf19148f 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -14,14 +14,11 @@ matrix:
exclude:
- python: 2.6
# Flake8 no longer supports Python 2.6
- env: TEST_TYPE=flake8
+ env: TEST_SUITE=flake8
# Use new Travis infrastructure (Docker can't sudo yet)
sudo: false
-# Cache dependencies
-cache: pip
-
# Install various dependencies
install:
- pip install coveralls
@@ -40,7 +37,7 @@ before_script:
script: share/spack/qa/run-$TEST_SUITE-tests
after_success:
- - if [[ $TEST_SUITE == unit && $TRAVIS_PYTHON_VERSION -eq 2.7 ]]; then coveralls; fi
+ - if [[ $TEST_SUITE == unit && $TRAVIS_PYTHON_VERSION == 2.7 ]]; then coveralls; fi
notifications:
email: