From 9f4bcd459c66ac54b7d9a4408ad51095f1768762 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20L=C3=BCck?= Date: Mon, 14 Nov 2022 10:08:37 +0100 Subject: [PATCH] Update test suite and report failed assertions --- .github/workflows/ci.yml | 22 +++++++++++++--------- composer.json | 22 +++++++++++----------- phpunit.xml.dist | 17 +++++++++++++---- phpunit.xml.legacy | 19 ++++++++++--------- 4 files changed, 47 insertions(+), 33 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0724232..55bbaa5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -7,7 +7,7 @@ on: jobs: PHPUnit: name: PHPUnit (PHP ${{ matrix.php }}) - runs-on: ubuntu-20.04 + runs-on: ubuntu-22.04 strategy: matrix: php: @@ -24,11 +24,12 @@ jobs: - 5.4 - 5.3 steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - uses: shivammathur/setup-php@v2 with: php-version: ${{ matrix.php }} coverage: xdebug + ini-file: development - run: composer install - run: vendor/bin/phpunit --coverage-text if: ${{ matrix.php >= 7.3 }} @@ -37,13 +38,16 @@ jobs: PHPUnit-hhvm: name: PHPUnit (HHVM) - runs-on: ubuntu-18.04 + runs-on: ubuntu-22.04 continue-on-error: true steps: - - uses: actions/checkout@v2 - - uses: azjezz/setup-hhvm@v1 + - uses: actions/checkout@v3 + - run: cp "$(which composer)" composer.phar && ./composer.phar self-update --2.2 # downgrade Composer for HHVM + - name: Run hhvm composer.phar install + uses: docker://hhvm/hhvm:3.30-lts-latest with: - version: lts-3.30 - - run: composer self-update --2.2 # downgrade Composer for HHVM - - run: hhvm $(which composer) install - - run: hhvm vendor/bin/phpunit + args: hhvm composer.phar install + - name: Run hhvm vendor/bin/phpunit + uses: docker://hhvm/hhvm:3.30-lts-latest + with: + args: hhvm vendor/bin/phpunit diff --git a/composer.json b/composer.json index 182a3a5..ab77256 100644 --- a/composer.json +++ b/composer.json @@ -26,16 +26,6 @@ "email": "cboden@gmail.com" } ], - "autoload": { - "psr-4": { - "React\\Datagram\\": "src" - } - }, - "autoload-dev": { - "psr-4": { - "React\\Tests\\Datagram\\": "tests" - } - }, "require": { "php": ">=5.3", "evenement/evenement": "^3.0 || ^2.0 || ^1.0", @@ -45,6 +35,16 @@ }, "require-dev": { "clue/block-react": "~1.0", - "phpunit/phpunit": "^9.3 || ^5.7 || ^4.8.35" + "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35" + }, + "autoload": { + "psr-4": { + "React\\Datagram\\": "src/" + } + }, + "autoload-dev": { + "psr-4": { + "React\\Tests\\Datagram\\": "tests/" + } } } diff --git a/phpunit.xml.dist b/phpunit.xml.dist index b6b06a4..acade82 100644 --- a/phpunit.xml.dist +++ b/phpunit.xml.dist @@ -1,11 +1,12 @@ - - + + convertDeprecationsToExceptions="true"> ./tests/ @@ -16,4 +17,12 @@ ./src/ + + + + + + + + diff --git a/phpunit.xml.legacy b/phpunit.xml.legacy index cfaa0ad..048073e 100644 --- a/phpunit.xml.legacy +++ b/phpunit.xml.legacy @@ -1,17 +1,10 @@ - + + colors="true"> ./tests/ @@ -22,4 +15,12 @@ ./src/ + + + + + + + +