From aa873dedbc5b87f1f8daad279746dfd26a66d6ae Mon Sep 17 00:00:00 2001 From: Aleksander Machniak Date: Tue, 28 Nov 2023 19:59:00 +0100 Subject: [PATCH] CI: Disable browser tests in mobile mode --- .github/run.sh | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/run.sh b/.github/run.sh index e15fbe47ef5..b2e52035eb6 100755 --- a/.github/run.sh +++ b/.github/run.sh @@ -32,7 +32,8 @@ wget https://repo1.maven.org/maven2/com/icegreen/greenmail-standalone/$GMV/green # Run tests echo "TESTS_MODE: DESKTOP" \ && TESTS_MODE=desktop vendor/bin/phpunit -c tests/Browser/phpunit.xml --exclude-group=failsonga \ -&& echo "TESTS_MODE: PHONE" \ -&& TESTS_MODE=phone vendor/bin/phpunit -c tests/Browser/phpunit.xml --exclude-group=failsonga-phone \ && echo "TESTS_MODE: TABLET" \ -&& TESTS_MODE=tablet vendor/bin/phpunit -c tests/Browser/phpunit.xml --exclude-group=failsonga-tablet +&& TESTS_MODE=tablet vendor/bin/phpunit -c tests/Browser/phpunit.xml --exclude-group=failsonga-tablet \ +# Mobile mode tests are unreliable on Github Actions +# && echo "TESTS_MODE: PHONE" \ +# && TESTS_MODE=phone vendor/bin/phpunit -c tests/Browser/phpunit.xml --exclude-group=failsonga-phone \