Make WordPress Core

Changeset 40241


Ignore:
Timestamp:
03/08/2017 12:06:12 AM (8 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

Location:
trunk/tests/phpunit
Files:
3 edited

Legend:

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

    r40240 r40241  
    175175        $_POST = array();
    176176        self::flush_cache();
     177    }
     178
     179    /**
     180     * Allow tests to be skipped on some automated runs
     181     *
     182     * For test runs on Travis for something other than trunk/master
     183     * we want to skip tests that only need to run for master.
     184     */
     185    public function skipOnAutomatedBranches() {
     186        // gentenv can be disabled
     187        if ( ! function_exists( 'getenv' ) ) {
     188            return false;
     189        }
     190
     191        // https://docs.travis-ci.com/user/environment-variables/#Default-Environment-Variables
     192        $travis_branch       = getenv( 'TRAVIS_BRANCH' );
     193        $travis_pull_request = getenv( 'TRAVIS_PULL_REQUEST' );
     194
     195        if ( false !== $travis_pull_request && 'master' !== $travis_branch ) {
     196            $this->markTestSkipped( 'For automated test runs, this test is only run on trunk/master' );
     197        }
    177198    }
    178199
  • trunk/tests/phpunit/tests/basic.php

    r40240 r40241  
    99
    1010    function test_license() {
     11        // This test is designed to only run on trunk/master
     12        $this->skipOnAutomatedBranches();
     13
    1114        $license = file_get_contents( ABSPATH . 'license.txt' );
    1215        preg_match( '#Copyright 2011-(\d+) by the contributors#', $license, $matches );
  • trunk/tests/phpunit/tests/external-http/basic.php

    r40240 r40241  
    66
    77    function test_readme() {
     8        // This test is designed to only run on trunk/master
     9        $this->skipOnAutomatedBranches();
     10
    811        $readme = file_get_contents( ABSPATH . 'readme.html' );
    912
Note: See TracChangeset for help on using the changeset viewer.