Make WordPress Core

Ticket #56817: 56817-skip.diff

File 56817-skip.diff, 935 bytes (added by desrosj, 2 years ago)
  • .env

    diff --git a/.env b/.env
    index 63a8169f64..6aa4640c26 100644
    a b LOCAL_PORT=8889 
    1515LOCAL_DIR=src
    1616
    1717# The PHP version to use. Valid options are 'latest', and '{version}-fpm'.
    18 LOCAL_PHP=latest
     18LOCAL_PHP=8.2-fpm
    1919
    2020# Whether or not to enable Xdebug.
    2121LOCAL_PHP_XDEBUG=false
  • tests/phpunit/tests/functions.php

    diff --git a/tests/phpunit/tests/functions.php b/tests/phpunit/tests/functions.php
    index 14d2a26315..fa240cea47 100644
    a b class Tests_Functions extends WP_UnitTestCase { 
    14151415         * @requires extension fileinfo
    14161416         */
    14171417        public function test_wp_check_filetype_and_ext_with_filtered_woff() {
     1418                if ( PHP_VERSION_ID >= 80200 ) {
     1419                        $this->markTestSkipped( 'This test currently fails on PHP 8.2RC3 and requires further investigation.' );
     1420                }
     1421
    14181422                $file     = DIR_TESTDATA . '/uploads/dashicons.woff';
    14191423                $filename = 'dashicons.woff';
    14201424