summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorfvogel <fvogelnew1@free.fr>2021-05-10 17:36:06 (GMT)
committerfvogel <fvogelnew1@free.fr>2021-05-10 17:36:06 (GMT)
commit5617f682b6481481f7468cddc99f921dc6b8e0b0 (patch)
tree29c00825ddbf153cbc03141dbb82c2da3187289f /.github
parentfff894fae9b3bff930c0da19a37a07434e70652a (diff)
downloadtk-5617f682b6481481f7468cddc99f921dc6b8e0b0.zip
tk-5617f682b6481481f7468cddc99f921dc6b8e0b0.tar.gz
tk-5617f682b6481481f7468cddc99f921dc6b8e0b0.tar.bz2
Try forcing exit code to be zero (grepping for 'Failed [1-9] could be good enough).
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/mac-build.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/mac-build.yml b/.github/workflows/mac-build.yml
index 32b4967..0250798 100644
--- a/.github/workflows/mac-build.yml
+++ b/.github/workflows/mac-build.yml
@@ -128,7 +128,7 @@ jobs:
: do nothing
}
fi
- ( runXvfb :0; make test-classic test-ttk ) | tee out.txt || {
+ ( runXvfb :0; make test-classic test-ttk; exit 0 ) | tee out.txt || {
echo "::error::Failure during Test"
exit 1
}