Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix running Windows on Travis CI #1812

Closed
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
test: increase tap timeout
test-addon.js includes compiling code, making the default 30 second
timeout not suitable. This increases the timeout for all platforms,
which is a potential problem everywhere, fixing the timeout that
happens on Windows.

Fixes: #1801
joaocgreis committed Jul 8, 2019

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
commit a45bbff46be677071d0f32a1377b5018dc94090b
2 changes: 0 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -28,8 +28,6 @@ matrix:
- name: "Node.js 12 & Python 3.7 on Linux"
python: 3.7
before_install: nvm install 12
allow_failures:
- os: windows
install:
#- pip install -r requirements.txt
- pip install flake8 # pytest # add another testing frameworks later
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -46,6 +46,6 @@
},
"scripts": {
"lint": "standard */*.js test/**/*.js",
"test": "npm run lint && tap test/test-*"
"test": "npm run lint && tap --timeout=120 test/test-*"
}
}