File tree Expand file tree Collapse file tree 2 files changed +20
-14
lines changed Expand file tree Collapse file tree 2 files changed +20
-14
lines changed Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ phpunit:
2121 docker-compose run --rm --no-deps app ./vendor/bin/phpunit
2222
2323phpunit-with-coverage :
24- docker-compose -f docker-compose.yml run --rm --no-deps -e XDEBUG_MODE=coverage app_debug ./vendor/bin/phpunit $(COVERAGE_FLAGS )
24+ docker-compose -f docker-compose.yml run --rm --no-deps -e XDEBUG_MODE=coverage app ./vendor/bin/phpunit $(COVERAGE_FLAGS )
2525
2626cs :
2727 docker-compose run --rm --no-deps app ./vendor/bin/phpcs
Original file line number Diff line number Diff line change 11<?xml version =" 1.0" ?>
22<phpunit
3- xmlns:xsi=" http://www.w3.org/2001/XMLSchema-instance"
4- backupGlobals=" false"
5- bootstrap=" tests/bootstrap.php"
6- colors=" true"
7- stopOnError=" false"
8- stopOnFailure=" false"
9- stopOnIncomplete=" false"
10- stopOnSkipped=" false"
11- xsi:noNamespaceSchemaLocation=" https://schema.phpunit.de/10.5/phpunit.xsd"
12- cacheDirectory=" .phpunit.cache"
13- backupStaticProperties=" false"
14- requireCoverageMetadata=" true"
3+ xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
4+ backupGlobals =" false"
5+ bootstrap =" tests/bootstrap.php"
6+ colors =" true"
7+ stopOnError =" false"
8+ stopOnFailure =" false"
9+ stopOnIncomplete =" false"
10+ stopOnSkipped =" false"
11+ xsi : noNamespaceSchemaLocation =" https://schema.phpunit.de/10.5/phpunit.xsd"
12+ cacheDirectory =" .phpunit.cache"
13+ backupStaticProperties =" false"
14+ requireCoverageMetadata =" true"
1515>
1616 <testsuites >
1717 <testsuite name =" unit" >
2121 <source >
2222 <include >
2323 <directory suffix =" .php" >src</directory >
24- </include >
24+ </include >
25+ <exclude >
26+ <directory suffix =" .php" >src/DataAccess/Migrations</directory >
27+ <directory suffix =" .php" >src/DataAccess/DoctrineTypes</directory >
28+ <file >src/ScalarTypeConverter.php</file >
29+ <file >src/AddressChangeContextFactory.php</file >
30+ </exclude >
2531 </source >
2632</phpunit >
You can’t perform that action at this time.
0 commit comments