From 0e9ab694f22fa3c1ec316f997a4277e30b70ee25 Mon Sep 17 00:00:00 2001 From: Yann Collet Date: Fri, 15 Jul 2022 12:13:45 +0200 Subject: refactor test ensuring that make test does not depend on console status Fix #990 --- .github/workflows/ci.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0b1650c..616926e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -581,10 +581,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 ############################################################### -- cgit v0.12