forked from CleanCut/green
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
57 lines (56 loc) · 1.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
sudo: false
install:
- "pip install ."
- "pip install virtualenv"
- "pip install coveralls"
script:
- "make test"
after_success: "if [ $TRAVIS_OS_NAME == linux ] ; then coveralls ; fi"
cache: pip
matrix:
fast_finish: true
include:
- os: osx
osx_image: xcode8.2
language: generic
env: HINT=Sierra
before_install:
- brew update
- sleep 1
- brew install python3
- sleep 1
- brew install pypy
- sleep 1
- pip3 install .
- sleep 1
- pip3 install virtualenv
- sleep 1
- pip_pypy install .
- sleep 1
- pip_pypy install virtualenv
- sleep 1
- os: linux
python: 2.7
language: python
- os: linux
python: 3.4
language: python
- os: linux
python: 3.5
language: python
- os: linux
python: 3.6
language: python
- os: linux
python: 'nightly'
language: python
- os: linux
python: pypy
language: python
- os: linux
python: 'pypy3'
language: python
allow_failures:
- python: "nightly"
- python: 'pypy3'
- os: "osx"