diff options
author | John MacFarlane <jgm@berkeley.edu> | 2019-11-30 10:39:21 -0800 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2019-11-30 10:39:21 -0800 |
commit | 866114565c5dc9ab8864c476e5c443e8e4c05eea (patch) | |
tree | b868935e9d356ee1838bf800239f1cda3dde050d | |
parent | 1123c9779f062aba02961f93d848a6e0c530c23a (diff) | |
download | pandoc-866114565c5dc9ab8864c476e5c443e8e4c05eea.tar.gz |
Hide successes in CI tests.
This makes it easier to spot failures.
-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 a0b7d1c74..7f8cefaa7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -66,7 +66,7 @@ jobs: cabal v2-build --enable-tests --disable-optimization 2>&1 | tee build.log # fail if warnings in local build ! grep -q ": *[Ww]arning:" build.log || exit 1 - cabal v2-test --disable-optimization + cabal v2-test --disable-optimization --test-option=--hide-successes windows: @@ -85,7 +85,7 @@ jobs: - name: Build and test shell: cmd run: | - stack test --fast + stack test --fast --test-arguments='--hide-successes' macos: @@ -103,4 +103,4 @@ jobs: ./stack test --dependencies-only --fast - name: Build and test run: | - ./stack test --fast + ./stack test --fast --test-arguments='--hide-successes' |