diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/spack/spack/cmd/test.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/spack/spack/cmd/test.py b/lib/spack/spack/cmd/test.py index 3362b8a109..10b0eb73ca 100644 --- a/lib/spack/spack/cmd/test.py +++ b/lib/spack/spack/cmd/test.py @@ -333,6 +333,7 @@ def test_results(args): if names: test_suites = [spack.install_test.get_test_suite(name) for name in names] + test_suites = list(filter(lambda ts: ts is not None, test_suites)) if not test_suites: tty.msg('No test suite(s) found in test stage: {0}' .format(', '.join(names))) |