Make WordPress Core


Ignore:
Timestamp:
11/04/2020 03:52:06 PM (5 years ago)
Author:
desrosj
Message:

Build/Test Tools: Remove the E2E test job from the 5.5 branch.

The E2E test job does not currently perform any meaningful tests, so continuing to run them is not necessary for older branches.

Props johnbillion.
See #51705.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/5.5/.travis.yml

    r49497 r49500  
    3030jobs:
    3131  include:
    32   - env: WP_TRAVISCI=test:e2e LOCAL_PHPUNIT=latest PUPPETEER_SKIP_CHROMIUM_DOWNLOAD=
    33     name: E2E Tests
    3432  - env: WP_TRAVISCI=lint:php COMPOSER_INSTALL=true NPM_INSTALL=false WP_INSTALL=false
    3533    name: PHP Linting
     
    7977  fi
    8078- |
    81   if [[ "$WP_TRAVISCI" == "test:e2e" ]] || [[ "$WP_TRAVISCI" == "test:php" ]]; then
     79  if [[ "$WP_TRAVISCI" == "test:php" ]]; then
    8280    npm run env:start
    8381    npm run build
     
    109107script:
    110108  - |
    111     if [[ "$WP_TRAVISCI" == "test:e2e" ]]; then
    112       npm run test:e2e
    113     elif [[ "$WP_TRAVISCI" == "test:php" ]]; then
     109     [[ "$WP_TRAVISCI" == "test:php" ]]; then
    114110      npm run test:php -- --verbose -c phpunit.xml.dist &&
    115111      npm run test:php -- --verbose -c phpunit.xml.dist --group ajax &&
Note: See TracChangeset for help on using the changeset viewer.