Changeset 49280 for trunk/tests/phpunit/includes/abstract-testcase.php
- Timestamp:
- 10/22/2020 05:53:47 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/includes/abstract-testcase.php
r49267 r49280 199 199 200 200 if ( in_array( $github_event_name, $skipped, true ) || 'refs/heads/master' !== $github_ref ) { 201 $this->markTestSkipped( 'For automated test runs, this test is only run on trunk/master - GitHub only' );201 $this->markTestSkipped( 'For automated test runs, this test is only run on trunk/master' ); 202 202 } 203 203 } elseif ( 'false' !== $travis_branch ) { 204 204 // We're on Travis CI. 205 205 if ( 'master' !== $travis_branch || 'false' !== $travis_pull_request ) { 206 $this->markTestSkipped( 'For automated test runs, this test is only run on trunk/master - Travis only' );206 $this->markTestSkipped( 'For automated test runs, this test is only run on trunk/master' ); 207 207 } 208 208 }
Note: See TracChangeset
for help on using the changeset viewer.