diff options
author | Birte Kristina Friesel <birte.friesel@uos.de> | 2023-09-18 13:29:03 +0200 |
---|---|---|
committer | Birte Kristina Friesel <birte.friesel@uos.de> | 2023-09-18 13:29:03 +0200 |
commit | 36a5ea7716e6b1e2452709d37e876efa6a7ccc37 (patch) | |
tree | 2ed8e70e38ff17b50a99777f13738aa4d6638acf /lib | |
parent | cb7424c3de9961262a85c42416d9766741cf6749 (diff) |
runner: increase verbosity of nfpvalues exception
Diffstat (limited to 'lib')
-rw-r--r-- | lib/runner.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/runner.py b/lib/runner.py index 672a824..13a17d1 100644 --- a/lib/runner.py +++ b/lib/runner.py @@ -690,7 +690,9 @@ class Multipass: universal_newlines=True, ) if res.returncode != 0: - raise RuntimeError(f"make nfpvalues Failure. command = {command}") + raise RuntimeError( + f"'make nfpvalues' exited with a non-zero status of {res.returncode}. command = {command}, stderr = '{res.stderr}', stdout = '{res.stdout}'" + ) return json.loads(res.stdout) def _cached_info(self, opts=list()) -> list: |