-
Notifications
You must be signed in to change notification settings - Fork 1
/
.travis.yml
96 lines (94 loc) · 2.63 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
sudo: false
matrix:
allow_failures:
- os: osx
- python: 3.7-dev
- env: TRAVIS_NODE_VERSION=7.4
include:
- language: python
python: 2.7
env: TRAVIS_NODE_VERSION=4.6
- language: python
python: 3.3
env: TRAVIS_NODE_VERSION=4.8
- language: python
python: 3.4
env: TRAVIS_NODE_VERSION=6.11
- language: python
python: 3.5
env: TRAVIS_NODE_VERSION=6.11
- language: python
python: 3.6
env: TRAVIS_NODE_VERSION=7.10
- language: python
python: 3.7-dev
env: TRAVIS_NODE_VERSION=8.9
- language: python
python: pypy
env: TRAVIS_NODE_VERSION=4.8
- language: python
python: pypy3
env: TRAVIS_NODE_VERSION=6.9
# test different versions of Node.js on osx
- language: node_js
node_js: 4.8
os: osx
env: TRAVIS_PYTHON_VERSION=3.4.5
- language: node_js
node_js: 6.12
os: osx
env: TRAVIS_PYTHON_VERSION=3.5.3
- language: node_js
node_js: 8.9
os: osx
env: TRAVIS_PYTHON_VERSION=3.6.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
# This typically will work for standard python, but pypy for some
# reason will choke hard
# - python setup.py develop easy_install calmjs.rjs[dev]
# - python setup.py egg_info
# Use pypy friendly installation instructions
- pip install -U calmjs
- python setup.py develop
script:
# run initial tests without optional dependencies
- flake8 setup.py src
- python -m unittest calmjs.rjs.tests.make_suite
# run full coverage of full test suite with complete dependencies
- pip install calmjs.dev
- coverage run --include=src/* -m unittest calmjs.rjs.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
- 2.0.x