Skip to content

Commit

Permalink
Revert "Fix: Continue on error when running tests on PHP 8.3"
Browse files Browse the repository at this point in the history
This reverts commit 5ba0bd8.
  • Loading branch information
sebastianbergmann committed Jul 18, 2023
1 parent 985f0c3 commit 9bc7e4f
Showing 1 changed file with 2 additions and 14 deletions.
16 changes: 2 additions & 14 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -103,13 +103,7 @@ jobs:
- name: Install dependencies with Composer
run: ./tools/composer update --no-ansi --no-interaction --no-progress

- name: Run tests with PHPUnit on stable PHP version
if: matrix.php-version != '8.3'
run: ./phpunit --testsuite unit

- name: Run tests with PHPUnit on unstable PHP version
if: matrix.php-version == '8.3'
continue-on-error: true
- name: Run tests with PHPUnit
run: ./phpunit --testsuite unit

end-to-end-tests:
Expand Down Expand Up @@ -159,13 +153,7 @@ jobs:
- name: Install dependencies with Composer
run: ./tools/composer update --no-ansi --no-interaction --no-progress

- name: Run tests with PHPUnit on stable PHP version
if: matrix.php-version != '8.3'
run: ./phpunit --testsuite end-to-end

- name: Run tests with PHPUnit on unstable PHP version
if: matrix.php-version == '8.3'
continue-on-error: true
- name: Run tests with PHPUnit
run: ./phpunit --testsuite end-to-end

code-coverage:
Expand Down

0 comments on commit 9bc7e4f

Please sign in to comment.