Skip to content

Commit

Permalink
ci: run in band on CI
Browse files Browse the repository at this point in the history
  • Loading branch information
huafu committed Sep 22, 2018
1 parent eb92dd6 commit 2715f73
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@ script:
# only grab coverage data on node 10
- |
if [[ "$(node --version)" == v10.* ]]; then
npm run test -- --coverage;
npm run test -- --runInBand --coverage;
else
npm run test;
npm run test -- --runInBand;
fi
after_success:
Expand Down
4 changes: 2 additions & 2 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ install:
- ps: Install-Product node 8 x64
- npm install -g npm@^5
# Typical npm stuff.
- set CI=true
# - set CI=true
# Our E2E work dir
- set TS_JEST_E2E_WORKDIR=%APPDATA%\ts-jest-e2e
- npm ci --ignore-scripts
Expand All @@ -33,7 +33,7 @@ cache:

# Post-install test scripts.
test_script:
- cmd: npm run test
- cmd: npm run test -- --runInBand

# skip_commits:
# files:
Expand Down

0 comments on commit 2715f73

Please sign in to comment.