From da710d81e5f01a14470ecd9edcf18945e28c8ff3 Mon Sep 17 00:00:00 2001 From: Jonathan Desrosiers Date: Tue, 23 Feb 2021 15:45:45 +0000 Subject: [PATCH] Build/Test Tools: Stop running the `restapi-jsclient` tests separately. This group is not specified in the list of excluded groups within the test configuration file, so they already run as part of the main test suite. Props johnbillion. Fixes #52608. git-svn-id: https://develop.svn.wordpress.org/trunk@50413 602fd350-edb4-49c9-b593-d223f7449a82 --- .github/workflows/phpunit-tests.yml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/.github/workflows/phpunit-tests.yml b/.github/workflows/phpunit-tests.yml index b86e56ed2d..ae61625478 100644 --- a/.github/workflows/phpunit-tests.yml +++ b/.github/workflows/phpunit-tests.yml @@ -270,10 +270,6 @@ jobs: if: ${{ ! matrix.multisite }} run: npm run test:${{ env.PHPUNIT_SCRIPT }} -- --verbose -c phpunit.xml.dist --group external-http - - name: Run REST API tests - if: ${{ ! matrix.multisite }} - run: npm run test:${{ env.PHPUNIT_SCRIPT }} -- --verbose -c phpunit.xml.dist --group restapi-jsclient - # __fakegroup__ is excluded to force PHPUnit to ignore the settings in phpunit.xml.dist. - name: Run (xDebug) tests run: LOCAL_PHP_XDEBUG=true npm run test:${{ env.PHPUNIT_SCRIPT }} -- -v --group xdebug --exclude-group __fakegroup__