Skip to content
This repository was archived by the owner on Jan 28, 2025. It is now read-only.

Commit dd4648c

Browse files
chore: dont rerun all tests for macos
1 parent 07bed2e commit dd4648c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ install:
1414
- cd integration/app-with-serverless-offline && npm ci && cd ../../
1515
script:
1616
- npm run lint
17-
- npm test
17+
- if [[ "$TRAVIS_OS_NAME" != "osx" ]]; then npm test; fi
1818
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then npm run coveralls; fi
1919
- npm run integration

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
"test:watch": "npm run test -- --watch --collect-coverage=false",
2121
"publish": "lerna publish --conventional-commits",
2222
"lint": "eslint .",
23-
"coveralls": "jest --coverage && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
23+
"coveralls": "jest --runInBand --coverage && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
2424
"integration": "jest --config jest.integration.config.json --setupTestFrameworkScriptFile=./jest.integration.setup.js",
2525
"postinstall": "opencollective-postinstall || true"
2626
},

0 commit comments

Comments
 (0)