forked from Anorov/cloudflare-scrape
-
Notifications
You must be signed in to change notification settings - Fork 2
/
.travis.yml
41 lines (34 loc) · 773 Bytes
/
.travis.yml
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
37
38
39
40
41
language: python
dist: trusty
sudo: false
matrix:
include:
- python: '2.7'
- python: '3.4'
- python: '3.5'
- python: '3.6'
- python: '3.7'
dist: xenial
sudo: true
- env: cfscrape_node='4.5'
- env: cfscrape_node='node'
- os: osx
language: node_js
node_js: node
cache:
directories:
- $HOME/Library/Caches/Homebrew
- /usr/local/Homebrew
cache: pip
before_install:
- |
if [ -n "${cfscrape_node}" ]; then
source ~/.nvm/nvm.sh
nvm install "${cfscrape_node}"
nvm use "${cfscrape_node}"
fi
install:
- node -p process.versions
- make
script: make ci
after_success: make coverage