Skip to content

Commit

Permalink
fix: update travis CLI command to kill anything running on port 4444
Browse files Browse the repository at this point in the history
  • Loading branch information
sghoweri committed Aug 6, 2019
1 parent dbd513e commit adeb16e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .travis.yml
Expand Up @@ -44,7 +44,7 @@ jobs:
- yarn workspace @bolt/website prep # creates data and manifest files
before_script: ./scripts/check-run-queue.js 'Unit'
script:
- lsof -ti tcp:4444 | xargs kill # kill any currently running tasks on port 4444 to try and recover from a Jest test retry
- lsof -t -i:4444 # kill any currently running tasks on port 4444 to try and recover from a Jest test retry
- travis_retry yarn test:js --bail --maxWorkers=1
# - yarn test:js:quick --maxWorkers=1 # running both `test:js` as comparison; remove or comment out this or other one eventually
- yarn test:php
Expand Down

0 comments on commit adeb16e

Please sign in to comment.