summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorTodd Gamblin <tgamblin@llnl.gov>2016-05-10 00:50:45 -0700
committerTodd Gamblin <tgamblin@llnl.gov>2016-05-10 00:50:45 -0700
commite9c83db42bd0976369c338aa1d9d6d98e63292f1 (patch)
tree9c84e73066c07c563a9623f769b074dd0d7cbabb /.travis.yml
parente3115aa505b8fc68893e4ebeaf5e5f152507e693 (diff)
parentc005b5fe9c72c19db92a5459d8c3657d7343aa0a (diff)
downloadspack-e9c83db42bd0976369c338aa1d9d6d98e63292f1.tar.gz
spack-e9c83db42bd0976369c338aa1d9d6d98e63292f1.tar.bz2
spack-e9c83db42bd0976369c338aa1d9d6d98e63292f1.tar.xz
spack-e9c83db42bd0976369c338aa1d9d6d98e63292f1.zip
Merge branch 'qa/coding_standard' of https://github.com/epfl-scitas/spack into epfl-scitas-qa/coding_standard
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..30dfebf783 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 --source=lib --omit=lib/spack/spack/test/*,lib/spack/env/*,lib/spack/docs/*,lib/spack/external/* 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/g'`
+ - if [[ ${CHANGED_PYTHON_FILES} ]] ; then flake8 --format pylint --config flake8.ini ${CHANGED_PYTHON_FILES} ; fi
+
+
+after_success:
+ - coveralls
notifications:
email: