Skip git-revision and network groups for PHP 5.5 tests

Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
This commit is contained in:
Maurício Meneghini Fauth 2022-01-22 15:40:04 -03:00
parent aef5ee7ae4
commit ea6fc6fe1e
No known key found for this signature in database
GPG Key ID: 6A16FD38AFC89CC8

View File

@ -44,7 +44,12 @@ jobs:
with:
dependency-versions: "highest"
- name: "Run tests for PHP 5.5"
if: "matrix.php-version == '5.5'"
run: "vendor/bin/phpunit --no-coverage --disallow-test-output --exclude-group selenium,git-revision,network"
- name: "Run tests"
if: "matrix.php-version != '5.5'"
run: "vendor/bin/phpunit --no-coverage --disallow-test-output --exclude-group selenium"
coding-standards: