diff options
author | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2025-08-14 14:52:17 +0300 |
---|---|---|
committer | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2025-08-14 14:52:17 +0300 |
commit | 003cb1e430739d8a464321b236ac6f34f7b39678 (patch) | |
tree | c744fcc113f3be9c498787db01519453568161bb /debian | |
parent | a4cdec021de715d865aed26b2b7d8ad7768c2dc8 (diff) | |
download | sciteco-003cb1e430739d8a464321b236ac6f34f7b39678.tar.gz |
debian/rules: enable verbose testsuite log
In case there is a failure, there is no way to inspect the
testsuite directory - all there will be is a CI or Launchpad runner log,
so all information should be in that log.
The CI `make check` and RPM spec also sets the --verbose flag.
Diffstat (limited to 'debian')
-rwxr-xr-x | debian/rules | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/debian/rules b/debian/rules index 1808b15..d85de3c 100755 --- a/debian/rules +++ b/debian/rules @@ -26,6 +26,9 @@ NUMJOBS = $(patsubst parallel=%,%,$(filter parallel=%,$(DEB_BUILD_OPTIONS))) MAKEFLAGS += -j$(NUMJOBS) endif +# In case `make check` fails, there will be a complete log. +export TESTSUITEFLAGS="--verbose" + %: dh $@ |