forked from aixp/pycoco
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.travis.yml
37 lines (37 loc) · 860 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
sudo: false
dist: trusty
language: python
matrix:
include: # https://github.com/travis-ci/travis-ci/issues/8783
- os: linux
python: 3.4
- os: linux
python: 3.5
- os: linux
python: 3.6
- os: linux
python: 3.7-dev
- os: linux
python: nightly
- os: linux
python: pypy3
# https://github.com/travis-ci/travis-ci/issues/6865#issuecomment-345513305
#- os: linux
# python: pypy3-nightly
- os: osx
python: nightly
#- os: osx
# python: pypy3
#- os: osx
# python: pypy3-nightly
before_install:
- pip3 install --upgrade setuptools setuptools_scm
- pip3 install --upgrade coveralls
install:
- python setup.py install
script:
- coverage run --source=Coco setup.py test
after_success:
- coveralls
# - python3 setup.py bdist_wheel
# - python3 setup.py sdistz