forked from Submersible/node-python-bridge
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
36 lines (36 loc) · 643 Bytes
/
.travis.yml
File metadata and controls
36 lines (36 loc) · 643 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
language: python
os:
- "linux"
env:
- NODE_VERSION="11"
- NODE_VERSION="10"
- NODE_VERSION="9"
- NODE_VERSION="8"
- NODE_VERSION="7.5"
- NODE_VERSION="6.1"
- NODE_VERSION="5.11"
- NODE_VERSION="4.4"
python:
- "3.7-dev"
- "3.6"
- "3.5"
- "3.4"
- "3.3"
- "3.2"
- "2.7"
- "2.6"
before_install:
- rm -rf ~/.nvm
- git clone https://github.com/creationix/nvm.git ~/.nvm
- source ~/.nvm/nvm.sh
- nvm install $NODE_VERSION
install:
- npm install -d
before_script:
- python -V
- node --version
script:
npm test
cache:
directories:
- node_modules