From 457268571086f921ea1034ec214511047a287ed3 Mon Sep 17 00:00:00 2001 From: Todd Gamblin Date: Fri, 21 Apr 2017 17:41:30 -0700 Subject: Coverage for multiple Python versions. (#3951) Update tests to use codecov for multiple python versions. --- .travis.yml | 2 +- share/spack/qa/run-unit-tests | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index d7bdf9b2ca..60b3b1cc31 100644 --- a/.travis.yml +++ b/.travis.yml @@ -92,7 +92,7 @@ before_script: script: share/spack/qa/run-$TEST_SUITE-tests after_success: - - if [[ $TEST_SUITE == unit && $TRAVIS_PYTHON_VERSION == 2.7 && $TRAVIS_OS_NAME == "linux" ]]; then codecov --env PY_VERSION; fi + - codecov --env PY_VERSION #============================================================================= # Notifications diff --git a/share/spack/qa/run-unit-tests b/share/spack/qa/run-unit-tests index d2ce9647af..c266665ccb 100755 --- a/share/spack/qa/run-unit-tests +++ b/share/spack/qa/run-unit-tests @@ -42,7 +42,9 @@ spack compilers spack config get compilers # Run unit tests with code coverage -if [[ "$TRAVIS_PYTHON_VERSION" == 2.7 ]]; then +py_ver=$(python -c 'import platform; print(platform.python_version())') +if [[ "$py_ver" == 2.7* || "$py_ver" == 3.6* ]]; +then coverage run bin/spack install -v libdwarf coverage run bin/spack test "$@" && coverage combine else -- cgit v1.2.3-60-g2f50