-
Notifications
You must be signed in to change notification settings - Fork 58
Expand file tree
/
Copy path.travis.yml
More file actions
28 lines (28 loc) · 719 Bytes
/
.travis.yml
File metadata and controls
28 lines (28 loc) · 719 Bytes
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
dist: trusty
language: python
sudo: false
python: 3.5
env:
global:
- CC_TEST_REPORTER_ID=cd0802782ea41e43bb232d303415f475ee6f5087c0d3e4252e3ac4b56509d13d
matrix:
include:
- env: TOXENV=py35
python: 3.5
- env: TOXENV=py36
python: 3.6
# - env: TOXENV=py37
# python: 3.7
before_script:
- curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
- chmod +x ./cc-test-reporter
- ./cc-test-reporter before-build
install:
- pip install tox-travis codecov coveralls
script:
- tox
after_script:
- ./cc-test-reporter after-build --exit-code $TRAVIS_TEST_RESULT --prefix $(readlink -f .)
after_success:
- codecov
- coveralls