-
-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy path.travis.yml
More file actions
29 lines (24 loc) · 561 Bytes
/
.travis.yml
File metadata and controls
29 lines (24 loc) · 561 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
29
# https://travis-ci.org/christoph2/objutils
dist: xenial
language: python
sudo: required
python:
- 3.4
#- 3.5
- 3.6
- 3.7
os:
- linux
#- osx
notifications:
email: false
install:
- pip install -r requirements.txt
- travis_retry pip install pylint codeclimate-test-reporter
- travis_retry pip install pytest-cov coverage coveralls codacy-coverage
script: coverage run --source=objutils setup.py test
after_success:
- pylint objutils
- coveralls
- coverage xml && python-codacy-coverage -r coverage.xml
- codeclimate-test-reporter