summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2021-03-08 14:46:32 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2021-03-08 14:46:32 (GMT)
commit40dd462d543ded80a0befbb0e48aafbccd89ea02 (patch)
treedd3fb1ba0fe77509b7fe08722a1e989838d1f4f9 /.github
parent49af052640cc4714a3c7cbc461adeaf2baef034e (diff)
downloadtk-40dd462d543ded80a0befbb0e48aafbccd89ea02.zip
tk-40dd462d543ded80a0befbb0e48aafbccd89ea02.tar.gz
tk-40dd462d543ded80a0befbb0e48aafbccd89ea02.tar.bz2
Mark more testcases with failsOnQuarz
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/mac-build.yml8
1 files changed, 2 insertions, 6 deletions
diff --git a/.github/workflows/mac-build.yml b/.github/workflows/mac-build.yml
index 32b5a11..acc063a 100644
--- a/.github/workflows/mac-build.yml
+++ b/.github/workflows/mac-build.yml
@@ -68,15 +68,11 @@ jobs:
: do nothing
}
fi
- ( runXvfb :0; make test-classic; exit $? ) | tee out-classic.txt || {
+ ( runXvfb :0; make test-classic test-ttk; exit $? ) | tee out.txt || {
echo "::error::Failure during Test"
exit 1
}
- ( runXvfb :0; make test-ttk; exit $? ) | tee out-ttk.txt || {
- echo "::error::Failure during Test"
- exit 1
- }
- cat out-classic.txt out-ttk.txt | grep -q "Failed [1-9]" && {
+ cat out.txt | grep -q "Failed [1-9]" && {
echo "::error::Failure during Test"
exit 1
}