Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions .github/settings.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,8 @@ branches:
- context: "Tests (8.5.19, 8.3, lowest)"
- context: "Tests (8.5.40, 8.4, highest)"
- context: "Tests (8.5.40, 8.4, lowest)"
- context: "Tests (8.5.40, 8.5, highest)"
- context: "Tests (8.5.40, 8.5, lowest)"
- context: "Tests (9.0.0, 7.3, highest)"
- context: "Tests (9.0.0, 7.3, lowest)"
- context: "Tests (9.0.0, 7.4, highest)"
Expand All @@ -69,6 +71,8 @@ branches:
- context: "Tests (9.0.0, 8.3, lowest)"
- context: "Tests (9.6.21, 8.4, highest)"
- context: "Tests (9.6.21, 8.4, lowest)"
- context: "Tests (9.6.21, 8.5, highest)"
- context: "Tests (9.6.21, 8.5, lowest)"
- context: "Tests (10.0.0, 8.1, highest)"
- context: "Tests (10.0.0, 8.1, lowest)"
- context: "Tests (10.0.0, 8.2, highest)"
Expand All @@ -77,16 +81,22 @@ branches:
- context: "Tests (10.0.0, 8.3, lowest)"
- context: "Tests (10.5.35, 8.4, highest)"
- context: "Tests (10.5.35, 8.4, lowest)"
- context: "Tests (10.5.35, 8.5, highest)"
- context: "Tests (10.5.35, 8.5, lowest)"
- context: "Tests (11.0.0, 8.2, lowest)"
- context: "Tests (11.0.0, 8.2, highest)"
- context: "Tests (11.0.0, 8.3, highest)"
- context: "Tests (11.0.0, 8.3, lowest)"
- context: "Tests (11.3.6, 8.4, highest)"
- context: "Tests (11.3.6, 8.4, lowest)"
- context: "Tests (11.3.6, 8.5, highest)"
- context: "Tests (11.3.6, 8.5, lowest)"
- context: "Tests (12.0.0, 8.3, highest)"
- context: "Tests (12.0.0, 8.3, lowest)"
- context: "Tests (12.0.0, 8.4, highest)"
- context: "Tests (12.0.0, 8.4, lowest)"
- context: "Tests (12.0.0, 8.5, highest)"
- context: "Tests (12.0.0, 8.5, lowest)"
strict: false
restrictions:

Expand Down
42 changes: 41 additions & 1 deletion .github/workflows/integrate.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -567,6 +567,14 @@ jobs:
php-version: "8.4"
dependencies: "highest"

- phpunit-version: "8.5.40"
php-version: "8.5"
dependencies: "lowest"

- phpunit-version: "8.5.40"
php-version: "8.5"
dependencies: "highest"

- phpunit-version: "9.0.0"
php-version: "7.3"
dependencies: "lowest"
Expand Down Expand Up @@ -623,6 +631,14 @@ jobs:
php-version: "8.4"
dependencies: "highest"

- phpunit-version: "9.6.21"
php-version: "8.5"
dependencies: "lowest"

- phpunit-version: "9.6.21"
php-version: "8.5"
dependencies: "highest"

- phpunit-version: "10.0.0"
php-version: "8.1"
dependencies: "lowest"
Expand Down Expand Up @@ -655,6 +671,14 @@ jobs:
php-version: "8.4"
dependencies: "highest"

- phpunit-version: "10.5.35"
php-version: "8.5"
dependencies: "lowest"

- phpunit-version: "10.5.35"
php-version: "8.5"
dependencies: "highest"

- phpunit-version: "11.0.0"
php-version: "8.2"
dependencies: "lowest"
Expand All @@ -679,6 +703,14 @@ jobs:
php-version: "8.4"
dependencies: "highest"

- phpunit-version: "11.3.6"
php-version: "8.5"
dependencies: "lowest"

- phpunit-version: "11.3.6"
php-version: "8.5"
dependencies: "highest"

- phpunit-version: "12.0.0"
php-version: "8.3"
dependencies: "lowest"
Expand All @@ -695,6 +727,14 @@ jobs:
php-version: "8.4"
dependencies: "highest"

- phpunit-version: "12.0.0"
php-version: "8.5"
dependencies: "lowest"

- phpunit-version: "12.0.0"
php-version: "8.5"
dependencies: "highest"

env:
PHPUNIT_SLOW_TEST_DETECTOR_PHAR: ".build/phar/phpunit-slow-test-detector.phar"

Expand Down Expand Up @@ -754,7 +794,7 @@ jobs:
run: "vendor/bin/phpunit --colors=always --configuration=test/Unit/phpunit.xml"

- name: "Apply patch from https://github.com/sebastianbergmann/phpunit/pull/4486 for phpunit/phpunit:9.0.0"
if: "(matrix.php-version == '8.3' || matrix.php-version == '8.4') && matrix.phpunit-version == '9.0.0' && matrix.dependencies == 'lowest'"
if: "(matrix.php-version == '8.3' || matrix.php-version == '8.4' || matrix.php-version == '8.5' ) && matrix.phpunit-version == '9.0.0' && matrix.dependencies == 'lowest'"
run: |
cd vendor/phpunit/phpunit
wget -O gh-4486.patch https://github.com/sebastianbergmann/phpunit/commit/0a488f22925b3c8732338ef0fbfe7f13cb4cf1d2.patch
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),

For a full diff see [`2.20.0...main`][2.20.0...main].

### Added

- Added support for PHP 8.5 ([#713]), by [@localheinz]

## [`2.20.0`][2.20.0]

For a full diff see [`2.19.1...2.20.0`][2.19.1...2.20.0].
Expand Down Expand Up @@ -423,6 +427,7 @@ For a full diff see [`7afa59c...1.0.0`][7afa59c...1.0.0].
[#651]: https://github.com/ergebnis/phpunit-slow-test-detector/pull/651
[#664]: https://github.com/ergebnis/phpunit-slow-test-detector/pull/664
[#704]: https://github.com/ergebnis/phpunit-slow-test-detector/pull/704
[#713]: https://github.com/ergebnis/phpunit-slow-test-detector/pull/713

[@dantleech]: https://github.com/dantleech
[@HypeMC]: https://github.com/HypeMC
Expand Down
Loading