Make WordPress Core


Ignore:
Timestamp:
11/24/2020 04:03:23 PM (4 years ago)
Author:
desrosj
Message:

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

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

Reviewed by peterwilsoncc, desrosj.
Fixes #51853.

File:
1 edited

Legend:

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

    r49362 r49689  
    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
     
    9997  fi
    10098- |
    101   if [[ "$WP_TRAVISCI" == "test:e2e" ]] || [[ "$WP_TRAVISCI" == "test:php" ]]; then
     99  if [[ "$WP_TRAVISCI" == "test:php" ]]; then
    102100    npm run env:start
    103101    npm run build
     
    109107  if [[ ${LOCAL_PHP:0:3} == "8.0" ]]; then
    110108    docker-compose run --rm phpunit php ./vendor/bin/phpunit --version
    111   elif [[ "$WP_TRAVISCI" == "test:e2e" ]] || [[ "$WP_TRAVISCI" == "test:php" ]]; then
     109  elif [[ "$WP_TRAVISCI" == "test:php" ]]; then
    112110    docker-compose run --rm phpunit phpunit --version
    113111  fi
     
    134132script:
    135133  - |
    136     if [[ "$WP_TRAVISCI" == "test:e2e" ]]; then
    137       npm run test:e2e
    138     elif [[ "$WP_TRAVISCI" == "test:php" ]]; then
     134    if [[ "$WP_TRAVISCI" == "test:php" ]]; then
    139135      npm run test:php -- --verbose -c phpunit.xml.dist &&
    140136      npm run test:php -- --verbose -c phpunit.xml.dist --group ajax &&
Note: See TracChangeset for help on using the changeset viewer.