-
Notifications
You must be signed in to change notification settings - Fork 1
/
.travis.yml
97 lines (95 loc) · 2.35 KB
/
.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
sudo: false
matrix:
allow_failures:
- os: osx
- python: 3.8-dev
include:
- language: python
python: 2.7
env: TRAVIS_NODE_VERSION=4.9
- language: python
python: 3.4
env: TRAVIS_NODE_VERSION=6.14
- language: python
python: 3.5
env: TRAVIS_NODE_VERSION=8.11
- language: python
python: 3.6
env: TRAVIS_NODE_VERSION=8.11
- language: python
python: 3.7
dist: xenial
sudo: true
env: TRAVIS_NODE_VERSION=9.11
- language: python
python: 3.8-dev
dist: xenial
sudo: true
env: TRAVIS_NODE_VERSION=10
- language: python
python: pypy
env: TRAVIS_NODE_VERSION=6.14
- language: python
python: pypy3
env: TRAVIS_NODE_VERSION=8.11
# test different versions of Node.js on osx
- language: node_js
node_js: 4.9
os: osx
env: TRAVIS_PYTHON_VERSION=3.4.8
- language: node_js
node_js: 6.14
os: osx
env: TRAVIS_PYTHON_VERSION=3.5.5
- language: node_js
node_js: 8.11
os: osx
env: TRAVIS_PYTHON_VERSION=3.6.6
- language: node_js
node_js: 10
os: osx
env: TRAVIS_PYTHON_VERSION=3.7.0
before_install:
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
brew update || brew update ;
brew install pyenv ;
brew outdated pyenv || brew upgrade pyenv ;
pyenv install $TRAVIS_PYTHON_VERSION ;
pyenv global $TRAVIS_PYTHON_VERSION ;
eval "$(pyenv init -)" ;
python --version ;
python -m pip install --user virtualenv ;
python -m virtualenv ~/.venv ;
source ~/.venv/bin/activate ;
else
rm -rf ~/.nvm ;
git clone https://github.com/creationix/nvm.git ~/.nvm ;
(cd ~/.nvm && git checkout `git describe --abbrev=0 --tags` );
source ~/.nvm/nvm.sh ;
nvm install "$TRAVIS_NODE_VERSION" ;
fi
- node --version
- npm --version
install:
- pip install coverage flake8
- pip install -e .
script:
- flake8 setup.py src
- coverage run --include=src/* -m unittest calmjs.dev.tests.make_suite
- coverage report -m
after_success:
# only submit coverage when testing under linux.
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then
pip install coveralls ;
coveralls ;
fi
branches:
only:
- testing
- master
- 1.0.x
- 1.1.x
- 2.0.x
- 2.1.x
- 2.2.x
- 2.3.x