diff options
author | Nicolas Grekas <nicolas.grekas@gmail.com> | 2015-10-09 18:17:11 +0200 |
---|---|---|
committer | Nicolas Grekas <nicolas.grekas@gmail.com> | 2015-10-10 10:46:02 +0200 |
commit | 94e661a60e9cca2c83879a88584fed6e1514bd00 (patch) | |
tree | 1bfa0dc85626a0c1068ddfdd60d2ec71e77dedbe | |
parent | cf43cdc943cd403996ba6924031658b7bf2998e2 (diff) | |
download | symfony-security-94e661a60e9cca2c83879a88584fed6e1514bd00.zip symfony-security-94e661a60e9cca2c83879a88584fed6e1514bd00.tar.gz symfony-security-94e661a60e9cca2c83879a88584fed6e1514bd00.tar.bz2 |
[ci] Enable collecting and replaying skipped tests
-rw-r--r-- | composer.json | 1 | ||||
-rw-r--r-- | phpunit.xml.dist | 4 |
2 files changed, 4 insertions, 1 deletions
diff --git a/composer.json b/composer.json index 2026fc4..e62f028 100644 --- a/composer.json +++ b/composer.json @@ -22,7 +22,6 @@ "symfony/http-kernel": "~2.1" }, "require-dev": { - "symfony/phpunit-bridge": "~2.7", "symfony/form": "~2.0,>=2.0.5", "symfony/intl": "~2.3", "symfony/routing": "~2.2", diff --git a/phpunit.xml.dist b/phpunit.xml.dist index 9a20f91..8919f32 100644 --- a/phpunit.xml.dist +++ b/phpunit.xml.dist @@ -24,4 +24,8 @@ </exclude> </whitelist> </filter> + + <listeners> + <listener class="Symfony\Bridge\PhpUnit\SkippedTestsListener" /> + </listeners> </phpunit> |