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

Commit a2df631

Browse files
committed
chore(travis): set YARN_GPG=no for windows target otherwise this starts gpg-agent that never exits, and set tests timeout to 6secs
1 parent 5e3e810 commit a2df631

File tree

2 files changed

+9
-5
lines changed

2 files changed

+9
-5
lines changed

.travis.yml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,13 @@
11
sudo: true
22
dist: trusty
3-
os:
4-
- linux
5-
- osx
6-
- windows
3+
matrix:
4+
include:
5+
- os: linux
6+
- os: osx
7+
- os: windows
8+
env:
9+
- YARN_GPG=no # otherwise this starts gpg-agent that never exits
10+
711
language: node_js
812
node_js:
913
- '10.0.0'

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"postinstall": "grunt download",
1111
"docs": "rimraf docs/ && jsdoc -c jsdoc.json",
1212
"test": "cross-env NODE_ENV=test mocha --recursive",
13-
"test-coverage": "cross-env NODE_ENV=test istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec --recursive test",
13+
"test-coverage": "cross-env NODE_ENV=test istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec --recursive test --timeout 6000",
1414
"publish-coverage": "mv ./coverage/lcov.info ./node_modules/coveralls/bin/coveralls.js",
1515
"pre-pack": "npm run lint",
1616
"prepush": "npm run lint && cross-env NODE_ENV=dev npm run test",

0 commit comments

Comments
 (0)