Skip to content

Commit f9b0af0

Browse files
committed
Use PHPUnit directly for tests
1 parent f247649 commit f9b0af0

File tree

3 files changed

+2
-6
lines changed

3 files changed

+2
-6
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,4 +46,4 @@ jobs:
4646
composer update --prefer-dist --no-progress
4747
4848
- name: Run PHPUnit tests
49-
run: vendor/bin/simple-phpunit --verbose
49+
run: vendor/bin/phpunit

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"psr/container": "^1.1 || ^2.0"
1717
},
1818
"require-dev": {
19-
"symfony/phpunit-bridge": "^5.4@dev"
19+
"phpunit/phpunit": "^9.5"
2020
},
2121
"autoload": {
2222
"psr-0": { "Pimple": "src/" }

phpunit.xml.dist

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,4 @@
1111
<directory>./src/Pimple/Tests</directory>
1212
</testsuite>
1313
</testsuites>
14-
15-
<listeners>
16-
<listener class="Symfony\Bridge\PhpUnit\SymfonyTestsListener" />
17-
</listeners>
1814
</phpunit>

0 commit comments

Comments
 (0)