From f29be2eea9f3768ef771c438532e5d045c357e27 Mon Sep 17 00:00:00 2001 From: Russell Standish Date: Thu, 14 Nov 2024 14:10:42 +1100 Subject: [PATCH] Disable two failing tests in DEBUG CI run. --- .github/workflows/ci-debug.yml | 2 +- test/runtests.sh | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci-debug.yml b/.github/workflows/ci-debug.yml index 1a8cfc0b2..46e8f6d33 100644 --- a/.github/workflows/ci-debug.yml +++ b/.github/workflows/ci-debug.yml @@ -26,5 +26,5 @@ jobs: - name: Run regression tests run: | - docker run -w /root -e TRAVIS=1 build:latest make sure + docker run -w /root -e TRAVIS=1 -e DEBUG=1 build:latest make sure diff --git a/test/runtests.sh b/test/runtests.sh index 3fff9356b..2973da1c7 100755 --- a/test/runtests.sh +++ b/test/runtests.sh @@ -23,6 +23,10 @@ for i in test/00/*.sh; do # we need to expose output generated here to prevent a build timeout if [ "$TRAVIS" = 1 -a $i = test/00/checkOverrides.sh ]; then sh $i +# items failing in DEBUG, ticketed on SF + elif [ -n "$DEBUG" -a \( $i = test/00/jest-tests.sh -o $i = test/00/oldSchemas.sh \) ]; then + echo disabled; continue; +# foir diagnostic purposes # elif [ "$TRAVIS" = 1 -a $i = test/00/jest-tests.sh ]; then # sh $i # checkReadOnlySaveFails tests that saving over a readonly file is prevented. Test doesn't work as root