From 708e9fadfd9c5432ff67dbc7f5117bd72415421c Mon Sep 17 00:00:00 2001 From: Jakub Zelenka Date: Fri, 17 Nov 2023 10:54:23 +0000 Subject: [PATCH] Skip slow tests on Travis Closes GH-12697 --- travis/test.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/travis/test.sh b/travis/test.sh index 8aaab2d13417d..c1617f782ab2d 100755 --- a/travis/test.sh +++ b/travis/test.sh @@ -4,6 +4,7 @@ set -ex # ARM64 CI reports nproc=32, which is excessive. if [ -z "$ARM64" ]; then export JOBS=$(nproc); else export JOBS=16; fi +export SKIP_SLOW_TESTS=1 export SKIP_IO_CAPTURE_TESTS=1 ./sapi/cli/php run-tests.php -P \ -g "FAIL,BORK,LEAK" --offline --show-diff --show-slow 1000 \