travis: disable spack spec for python 2.7 as well as 2.6

- keep this disabled until the `compiler find` fork bomb is fixed.
This commit is contained in:
Todd Gamblin 2019-06-05 21:17:30 -07:00
parent b76fc827ec
commit 3bd854f991

View File

@ -31,7 +31,7 @@ ${coverage_run} bin/spack -h
${coverage_run} bin/spack help -a
# Profile and print top 20 lines for a simple call to spack spec
if [[ $TRAVIS_PYTHON_VERSION != 2.6 ]]; then
if [[ $TRAVIS_PYTHON_VERSION != 2* ]]; then
${coverage_run} bin/spack -p --lines 20 spec mpileaks%gcc ^elfutils@0.170
fi