Make WordPress Core

Changeset 40245 for branches/4.2


Ignore:
Timestamp:
03/08/2017 12:41:15 AM (6 years ago)
Author:
johnbillion
Message:

Build/Test tools: In Travis, skip some tests when not on trunk.

This skips time sensitive tests (copyright year and PHP/MySQL version requirements) when tests are run on branches on Travis.

Props netweb, jorbin

Fixes #39486

Merges [40241] to the 4.2 branch.

Location:
branches/4.2
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • branches/4.2

  • branches/4.2/tests/phpunit/includes/testcase.php

    r31515 r40245  
    8989        $_POST = array();
    9090        $this->flush_cache();
     91    }
     92
     93    /**
     94     * Allow tests to be skipped on some automated runs
     95     *
     96     * For test runs on Travis for something other than trunk/master
     97     * we want to skip tests that only need to run for master.
     98     */
     99    public function skipOnAutomatedBranches() {
     100        // gentenv can be disabled
     101        if ( ! function_exists( 'getenv' ) ) {
     102            return false;
     103        }
     104
     105        // https://docs.travis-ci.com/user/environment-variables/#Default-Environment-Variables
     106        $travis_branch       = getenv( 'TRAVIS_BRANCH' );
     107        $travis_pull_request = getenv( 'TRAVIS_PULL_REQUEST' );
     108
     109        if ( false !== $travis_pull_request && 'master' !== $travis_branch ) {
     110            $this->markTestSkipped( 'For automated test runs, this test is only run on trunk/master' );
     111        }
    91112    }
    92113
  • branches/4.2/tests/phpunit/tests/basic.php

    r31622 r40245  
    3030
    3131    function test_license() {
     32        // This test is designed to only run on trunk/master
     33        $this->skipOnAutomatedBranches();
     34
    3235        $license = file_get_contents( ABSPATH . 'license.txt' );
    3336        preg_match( '#Copyright (\d+) by the contributors#', $license, $matches );
Note: See TracChangeset for help on using the changeset viewer.