tests: restore spack spec mpileaks in test output for Python 2 (#11664)

- also remove coverage calls of these commands
- we JUST want coverage to tell us what is in the test suite.
This commit is contained in:
Todd Gamblin 2019-06-08 13:04:44 -07:00 committed by GitHub
parent f31711b84e
commit 20e5f81653
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -27,13 +27,11 @@ cd "$SPACK_ROOT"
spack config get compilers
# Run spack help to cover command import
${coverage_run} bin/spack -h
${coverage_run} bin/spack help -a
bin/spack -h
bin/spack help -a
# Profile and print top 20 lines for a simple call to spack spec
if [[ $TRAVIS_PYTHON_VERSION != 2* ]]; then
${coverage_run} bin/spack -p --lines 20 spec mpileaks%gcc ^elfutils@0.170
fi
bin/spack -p --lines 20 spec mpileaks%gcc ^elfutils@0.170
# Run unit tests with code coverage
extra_args=""