1
0
mirror of https://github.com/danog/amp.git synced 2024-11-26 20:15:00 +01:00

Do not run uv tests separately in its own process

This commit is contained in:
Bob Weinand 2017-05-07 19:02:22 +02:00
parent 55de30c53d
commit 6c03950abd
2 changed files with 1 additions and 3 deletions

View File

@ -30,8 +30,7 @@ install:
script:
# Run testNoMemoryLeak separately, as those are skipped with enabled coverage
- php vendor/bin/phpunit --verbose --group memoryleak
- phpdbg -qrr vendor/bin/phpunit --verbose --exclude-group memoryleak,uv --coverage-php coverage/cov/main.cov
- phpdbg -qrr vendor/bin/phpunit --verbose --exclude-group memoryleak --group uv --coverage-php coverage/cov/uv.cov
- phpdbg -qrr vendor/bin/phpunit --verbose --exclude-group memoryleak --coverage-php coverage/cov/main.cov
- PHP_CS_FIXER_IGNORE_ENV=1 php vendor/bin/php-cs-fixer --diff --dry-run -v fix
after_script:

View File

@ -6,7 +6,6 @@ use Amp\Loop\UvDriver;
/**
* @requires extension uv
* @group uv
*/
class UvDriverTest extends DriverTest {
public function getFactory(): callable {