summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Baumbach <healther@users.noreply.github.com>2019-10-25 19:24:41 +0200
committerMassimiliano Culpo <massimiliano.culpo@gmail.com>2019-10-25 19:24:41 +0200
commitab55890ba85fe03f649a6173a996bf3c9435b011 (patch)
treeceeb9bcd33efccf4cf6c9345011b20c3f5edc5e4
parentebeb1ed62f8ac2a765213d872811eac7bac101c1 (diff)
downloadspack-ab55890ba85fe03f649a6173a996bf3c9435b011.tar.gz
spack-ab55890ba85fe03f649a6173a996bf3c9435b011.tar.bz2
spack-ab55890ba85fe03f649a6173a996bf3c9435b011.tar.xz
spack-ab55890ba85fe03f649a6173a996bf3c9435b011.zip
Make error msg of test_api_for_build_and_run_environment more informative (#13435)
-rw-r--r--lib/spack/spack/test/package_sanity.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/spack/spack/test/package_sanity.py b/lib/spack/spack/test/package_sanity.py
index 290d21b85f..bbf63881a7 100644
--- a/lib/spack/spack/test/package_sanity.py
+++ b/lib/spack/spack/test/package_sanity.py
@@ -154,7 +154,8 @@ def test_api_for_build_and_run_environment():
failing.append(pkg)
msg = ('there are {0} packages using the old API to set build '
- 'and run environment [{1}]')
+ 'and run environment [{1}], for further information see'
+ 'https://github.com/spack/spack/pull/11115')
assert not failing, msg.format(
len(failing), ','.join(x.name for x in failing)
)