summaryrefslogtreecommitdiffstats
path: root/.github/workflows/ci.yml
diff options
context:
space:
mode:
authorYann Collet <Cyan4973@users.noreply.github.com>2022-07-15 12:36:56 (GMT)
committerGitHub <noreply@github.com>2022-07-15 12:36:56 (GMT)
commita9a0a967cf3312d561c33c98492c70bed29317ce (patch)
treefacb3f4f1a0b26841548f4b67ebfce6c2aa9ed35 /.github/workflows/ci.yml
parent0bd66839ed9a6993196071596307cde18075dd9c (diff)
parent0e9ab694f22fa3c1ec316f997a4277e30b70ee25 (diff)
downloadlz4-a9a0a967cf3312d561c33c98492c70bed29317ce.zip
lz4-a9a0a967cf3312d561c33c98492c70bed29317ce.tar.gz
lz4-a9a0a967cf3312d561c33c98492c70bed29317ce.tar.bz2
Merge pull request #1117 from lz4/testConsole
refactor test ensuring that make test does not depend on console status
Diffstat (limited to '.github/workflows/ci.yml')
-rw-r--r--.github/workflows/ci.yml7
1 files changed, 3 insertions, 4 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index abc7600..0e6d69c 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -591,10 +591,9 @@ jobs:
- name: make test
run: make V=1 clean test MOREFLAGS='-Werror -Wconversion -Wno-sign-conversion'
- - name: make test | tee
- # test scenario where `stdout` is not the console
- run: make V=1 clean test MOREFLAGS='-Werror -Wconversion -Wno-sign-conversion' | tee
-
+ - name: Ensure `make test` doesn't depend on the status of the console
+ # see issue #990 for detailed explanations
+ run: make test > /dev/null
###############################################################