Skip to content

Commit ef4a7b0

Browse files
author
Cliff Odijk
committed
Rename the exclude to make sure it is clear what it does
1 parent 6b01513 commit ef4a7b0

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,13 @@ matrix:
1818
- php: 7.2
1919
env: SYMFONY_VERSION=4.0.*
2020
- php: 7.2
21-
env: SYMFONY_VERSION=4.0.* REQUIRE_PROXY_BRIDGE="" EXTRA_PHPUNIT_PARAMS="--group depTest"
21+
env: SYMFONY_VERSION=4.0.* REQUIRE_PROXY_BRIDGE="" EXTRA_PHPUNIT_PARAMS="--group SymfonyBridgeProxyManagerDependency"
2222

2323
env:
2424
global:
2525
- SYMFONY_VERSION=""
2626
- REQUIRE_PROXY_BRIDGE="yes"
27-
- EXTRA_PHPUNIT_PARAMS="--exclude-group depTest"
27+
- EXTRA_PHPUNIT_PARAMS=""
2828
- COMPOSER_FLAGS="--prefer-dist"
2929

3030
before_install:

phpunit.xml.dist

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<phpunit bootstrap="./tests/bootstrap.php" colors="true">
3-
<php>
4-
<!-- Disable E_USER_DEPRECATED until 3.0 -->
5-
<!-- php -r 'echo -1 & ~E_USER_DEPRECATED;' -->
6-
<ini name="error_reporting" value="-16385"/>
7-
</php>
83
<testsuites>
94
<testsuite>
105
<directory suffix="Test.php">./tests</directory>
116
</testsuite>
127
</testsuites>
8+
<groups>
9+
<exclude>
10+
<group>SymfonyBridgeProxyManagerDependency</group>
11+
</exclude>
12+
</groups>
1313
<filter>
1414
<whitelist>
1515
<directory>./</directory>

tests/Functional/SmokeTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ public function it_can_auto_register_command_handlers_using_public_method()
129129
/**
130130
* @test
131131
*
132-
* @group depTest
132+
* @group SymfonyBridgeProxyManagerDependency
133133
*
134134
* @expectedException \LogicException
135135
* @expectedExceptionMessage In order to use bundle "DoctrineOrmBridgeBundle" you need to require "symfony/proxy-manager-bridge" package.

0 commit comments

Comments
 (0)