Changeset 59168
- Timestamp:
- 10/04/2024 02:07:03 PM (9 months ago)
- Location:
- trunk
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/.github/workflows/phpunit-tests.yml
r59049 r59168 46 46 matrix: 47 47 os: [ ubuntu-latest ] 48 php: [ '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3' ]48 php: [ '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3', '8.4' ] 49 49 db-type: [ 'mysql' ] 50 50 db-version: [ '5.7', '8.0', '8.1', '8.2', '8.3' ] … … 117 117 matrix: 118 118 os: [ ubuntu-latest ] 119 php: [ '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3' ]119 php: [ '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3', '8.4' ] 120 120 db-type: [ 'mariadb' ] 121 121 db-version: [ '10.4', '10.6', '10.11', '11.2' ] -
trunk/.github/workflows/reusable-phpunit-tests-v3.yml
r58789 r59168 183 183 # __fakegroup__ is excluded to force PHPUnit to ignore the <exclude> settings in phpunit.xml.dist. 184 184 - name: Run (Xdebug) tests 185 if: ${{ inputs.php != '8. 3' }}185 if: ${{ inputs.php != '8.4' }} 186 186 continue-on-error: ${{ inputs.allow-errors }} 187 187 run: LOCAL_PHP_XDEBUG=true node ./tools/local-env/scripts/docker.js run php ./vendor/bin/phpunit -v --group xdebug --exclude-group __fakegroup__ -
trunk/.github/workflows/upgrade-testing.yml
r58575 r59168 44 44 matrix: 45 45 os: [ 'ubuntu-latest' ] 46 php: [ '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3' ]46 php: [ '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3', '8.4' ] 47 47 db-type: [ 'mysql' ] 48 48 db-version: [ '5.7', '8.0' ] … … 94 94 matrix: 95 95 os: [ 'ubuntu-latest' ] 96 php: [ '8.0', '8.1', '8.2', '8.3' ]96 php: [ '8.0', '8.1', '8.2', '8.3', '8.4' ] 97 97 db-type: [ 'mysql' ] 98 98 db-version: [ '5.7', '8.0' ] … … 144 144 matrix: 145 145 os: [ 'ubuntu-latest' ] 146 php: [ '8.0', '8.1', '8.2', '8.3' ]146 php: [ '8.0', '8.1', '8.2', '8.3', '8.4' ] 147 147 db-type: [ 'mysql' ] 148 148 db-version: [ '5.7', '8.0' ] -
trunk/.version-support-php.json
r58575 r59168 7 7 "8.1", 8 8 "8.2", 9 "8.3" 9 "8.3", 10 "8.4" 10 11 ], 11 12 "6-6": [ -
trunk/tests/phpunit/tests/import/parser.php
r59085 r59168 26 26 */ 27 27 public function test_malformed_wxr() { 28 if ( PHP_VERSION_ID >= 80400 ) { 29 $this->markTestSkipped( 'The Importer plugin is not ready for PHP 8.4 yet. This skip should be removed once it is.' ); 30 } 31 28 32 $file = DIR_TESTDATA . '/export/malformed.xml'; 29 33 … … 43 47 */ 44 48 public function test_invalid_wxr() { 49 if ( PHP_VERSION_ID >= 80400 ) { 50 $this->markTestSkipped( 'The Importer plugin is not ready for PHP 8.4 yet. This skip should be removed once it is.' ); 51 } 52 45 53 $f1 = DIR_TESTDATA . '/export/missing-version-tag.xml'; 46 54 $f2 = DIR_TESTDATA . '/export/invalid-version-tag.xml'; … … 62 70 */ 63 71 public function test_wxr_version_1_1() { 72 if ( PHP_VERSION_ID >= 80400 ) { 73 $this->markTestSkipped( 'The Importer plugin is not ready for PHP 8.4 yet. This skip should be removed once it is.' ); 74 } 75 64 76 $file = DIR_TESTDATA . '/export/valid-wxr-1.1.xml'; 65 77 … … 160 172 */ 161 173 public function test_wxr_version_1_0() { 174 if ( PHP_VERSION_ID >= 80400 ) { 175 $this->markTestSkipped( 'The Importer plugin is not ready for PHP 8.4 yet. This skip should be removed once it is.' ); 176 } 177 162 178 $file = DIR_TESTDATA . '/export/valid-wxr-1.0.xml'; 163 179 … … 258 274 */ 259 275 public function test_escaped_cdata_closing_sequence() { 276 if ( PHP_VERSION_ID >= 80400 ) { 277 $this->markTestSkipped( 'The Importer plugin is not ready for PHP 8.4 yet. This skip should be removed once it is.' ); 278 } 279 260 280 $file = DIR_TESTDATA . '/export/crazy-cdata-escaped.xml'; 261 281
Note: See TracChangeset
for help on using the changeset viewer.