Make WordPress Core

Changeset 40249


Ignore:
Timestamp:
03/08/2017 12:50:43 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

Merges [40241] to the 4.6 branch.

Location:
branches/4.6
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • branches/4.6

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

    r37861 r40249  
    160160        $_POST = array();
    161161        $this->flush_cache();
     162    }
     163
     164    /**
     165     * Allow tests to be skipped on some automated runs
     166     *
     167     * For test runs on Travis for something other than trunk/master
     168     * we want to skip tests that only need to run for master.
     169     */
     170    public function skipOnAutomatedBranches() {
     171        // gentenv can be disabled
     172        if ( ! function_exists( 'getenv' ) ) {
     173            return false;
     174        }
     175
     176        // https://docs.travis-ci.com/user/environment-variables/#Default-Environment-Variables
     177        $travis_branch       = getenv( 'TRAVIS_BRANCH' );
     178        $travis_pull_request = getenv( 'TRAVIS_PULL_REQUEST' );
     179
     180        if ( false !== $travis_pull_request && 'master' !== $travis_branch ) {
     181            $this->markTestSkipped( 'For automated test runs, this test is only run on trunk/master' );
     182        }
    162183    }
    163184
  • branches/4.6/tests/phpunit/tests/basic.php

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

    r35172 r40249  
    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        preg_match( '#<br /> Version (.*)#', $readme, $matches );
Note: See TracChangeset for help on using the changeset viewer.