diff options
author | Robin Haberkorn <rhaberkorn@fmsbw.de> | 2025-09-21 14:21:09 +0200 |
---|---|---|
committer | Robin Haberkorn <rhaberkorn@fmsbw.de> | 2025-09-21 16:30:15 +0200 |
commit | e38dbd2f3fe241e9e669595e611d6d4cd07da97e (patch) | |
tree | 65ed7aadf06a6aa67298e71ec09875c5cba0c6d0 /.github/workflows/ci.yml | |
parent | 6b030fe1a7b72c039cf0aa7c353b11fbfe46d20c (diff) | |
download | sciteco-e38dbd2f3fe241e9e669595e611d6d4cd07da97e.tar.gz |
when running the testsuite with --verbose, also turn off colors (--color=never)
Improves readability of the log files.
Diffstat (limited to '.github/workflows/ci.yml')
-rw-r--r-- | .github/workflows/ci.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index aea029e..508931c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -52,7 +52,7 @@ jobs: # NOTE: The test suite must be run in verbose mode because if it fails # we won't be able to analyze testsuite.log. - name: Run Test Suite - run: xvfb-run -a make check TESTSUITEFLAGS="--verbose" + run: xvfb-run -a make check TESTSUITEFLAGS="--verbose --color=never" - name: Build Developer Documentation run: cd doc && make devdoc - name: make distcheck @@ -88,7 +88,7 @@ jobs: # NOTE: The test suite must be run in verbose mode because if it fails # we won't be able to analyze testsuite.log. - name: Run Test Suite - run: make check TESTSUITEFLAGS="--verbose" + run: make check TESTSUITEFLAGS="--verbose --color=never" - name: Build Developer Documentation run: cd doc && make devdoc - run: make distcheck @@ -135,7 +135,7 @@ jobs: # NOTE: The test suite must be run in verbose mode because if it fails # we won't be able to analyze testsuite.log. - name: Run Test Suite - run: make check TESTSUITEFLAGS="--verbose" + run: make check TESTSUITEFLAGS="--verbose --color=never" - name: Build Developer Documentation run: cd doc && make devdoc - name: make distcheck |