Make WordPress Core

Changeset 44509

Timestamp:
01/09/2019 10:13:13 AM (6 years ago)
Author:
pento
Message:

Build/Tests: Default to running unit tests from src.

This is the actual commit, unlike [44508], which was not.

Props atimmer.
See #44492.
Fixes #45863.

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/tests/phpunit/includes/bootstrap.php

    r44108 r44509  
    3636require_once $config_file_path;
    3737require_once dirname( __FILE__ ) . '/functions.php';
    38 
    39 if ( defined( 'WP_RUN_CORE_TESTS' ) && WP_RUN_CORE_TESTS && file_exists( ABSPATH . '_index.php' ) ) {
    40     // Perhaps add more documentation about having to run `grunt` before running tests after changing code.
    41     echo "ERROR: ABSPATH must point to the `build` directory, not the `src` directory. Please update your wp-tests-config.php file.\n";
    42     exit( 1 );
    43 }
    4438
    4539tests_reset__SERVER();
  • trunk/wp-tests-config-sample.php

    r43311 r44509  
    22
    33/* Path to the WordPress codebase you'd like to test. Add a forward slash in the end. */
    4 if ( defined( 'WP_RUN_CORE_TESTS' ) && WP_RUN_CORE_TESTS ) {
    5     define( 'ABSPATH', dirname( __FILE__ ) . '/build/' );
    6 } else {
    7     define( 'ABSPATH', dirname( __FILE__ ) . '/src/' );
    8 }
     4define( 'ABSPATH', dirname( __FILE__ ) . '/src/' );
    95
    106/*
Note: See TracChangeset for help on using the changeset viewer.