summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authoralalazo <massimiliano.culpo@googlemail.com>2016-05-10 11:13:19 +0200
committeralalazo <massimiliano.culpo@googlemail.com>2016-05-10 11:13:19 +0200
commit9eee71edf784cbbe0a3772bdbf634f0df6133240 (patch)
tree16e76e091dc181fa0071a10d66abea8ddc751f58 /.travis.yml
parent67a01ef2ee182697df49f808654cf17f0e164b4a (diff)
parent42edb6840ebcccb5b3d421c0b749333a6754d4a1 (diff)
downloadspack-9eee71edf784cbbe0a3772bdbf634f0df6133240.tar.gz
spack-9eee71edf784cbbe0a3772bdbf634f0df6133240.tar.bz2
spack-9eee71edf784cbbe0a3772bdbf634f0df6133240.tar.xz
spack-9eee71edf784cbbe0a3772bdbf634f0df6133240.zip
Merge branch 'develop' of https://github.com/LLNL/spack into features/custom_modulefile_from_config
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml18
1 files changed, 15 insertions, 3 deletions
diff --git a/.travis.yml b/.travis.yml
index 1bed6b0874..4ff4d5f483 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -6,20 +6,32 @@ python:
# Use new Travis infrastructure (Docker can't sudo yet)
sudo: false
-# No need to install any deps.
-install: true
+# Install coveralls to obtain code coverage
+install:
+ - "pip install coveralls"
+ - "pip install flake8"
before_install:
# Need this for the git tests to succeed.
- git config --global user.email "spack@example.com"
- git config --global user.name "Test User"
+ # Need this to be able to compute the list of changed files
+ - git fetch origin develop:develop
script:
- . share/spack/setup-env.sh
- spack compilers
- spack config get compilers
- - spack test
- spack install -v libdwarf
+ # Run unit tests with code coverage
+ - coverage run bin/spack test
+ # Checks if the file that have been changed are flake8 conformant
+ - CHANGED_PYTHON_FILES=`git diff develop... --name-only | perl -ne 'print if /\.py$/'`
+ - if [[ ${CHANGED_PYTHON_FILES} ]] ; then flake8 --format pylint --config flake8.ini ${CHANGED_PYTHON_FILES} ; fi
+
+
+after_success:
+ - coveralls
notifications:
email: