summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
diff options
context:
space:
mode:
authorGuillem Jover <guillem@debian.org>2018-08-08 11:07:41 +0200
committerGuillem Jover <guillem@debian.org>2018-08-30 03:14:07 +0200
commite50f4c72b02a88a0124d0f2b671185504fea90cd (patch)
treec841e0c6bc2e1106d2e12efa1a506fbfe39618c5 /.gitlab-ci.yml
parent2a9a5392718371ad29605652fe55dc149fa4867c (diff)
downloaddpkg-e50f4c72b02a88a0124d0f2b671185504fea90cd.tar.gz
debian: Do not pass VERBOSE to test suite
The VERBOSE variable is only honored when using the automake test drivers, which we are not using, not even the custom ones. Remove the variable usage which is confusing as it is not doing anything.
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index f36669fd1..4dea92ec4 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -27,7 +27,7 @@ unit-tests:
libtest-pod-perl libtest-pod-coverage-perl libtest-spelling-perl
libtest-synopsis-perl
- ./configure
- - make check VERBOSE=1 TESTSUITEFLAGS=--verbose TEST_PARALLEL=$(nproc)
+ - make check TESTSUITEFLAGS=--verbose TEST_PARALLEL=$(nproc)
AUTHOR_TESTING=1
# Test whether the unit tests pass on a VPATH build.
@@ -37,7 +37,7 @@ vpath-tests:
- mkdir -p build-tree
- cd build-tree
- ../configure
- - make check VERBOSE=1 TESTSUITEFLAGS=--verbose TEST_PARALLEL=$(nproc)
+ - make check TESTSUITEFLAGS=--verbose TEST_PARALLEL=$(nproc)
# Test whether the external functional tests pass.
func-tests: