Skip to content

Commit d4b7952

Browse files
Configure travis and coverage
1 parent d96043b commit d4b7952

File tree

3 files changed

+30
-0
lines changed

3 files changed

+30
-0
lines changed

.coverage

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
!coverage.py: This is a private format, don't read it directly!{"lines":{"/home/marco/projects/trackingmore/trackingmore/testdata/testdata.py":[1,5,6,7,8,9,10,11,14,15,16,17,18,19,20,23,24,25,26,27,28,29,32,33,34],"/home/marco/projects/trackingmore/trackingmore/__init__.py":[1],"/home/marco/projects/trackingmore/trackingmore/testdata/__init__.py":[1],"/home/marco/projects/trackingmore/trackingmore/trackingmore.py":[1,2,4,8,9,10,11,12,13,14,15,20,85,23,24,25,79,29,97,34,91,37,38,103,109,54,73,59,60],"/home/marco/projects/trackingmore/trackingmore/test_trackingmore.py":[84,1,2,4,17,56,68,7,28,34,93]}}

.coveragerc

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[run]
2+
omit = setup.py

.travis.yml

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
language: python
2+
python:
3+
- "3.3"
4+
- "3.4"
5+
- "3.5"
6+
- "3.6"
7+
- "3.7-dev"
8+
- "pypy3"
9+
install:
10+
- pip install requests pytest
11+
script:
12+
- py.test --cov-report term-missing --cov=trackingmore
13+
matrix:
14+
allow_failures:
15+
- python: 3.7-dev
16+
- python: pypy3
17+
branches:
18+
only:
19+
- master
20+
after_success:
21+
- coveralls
22+
notifications:
23+
email:
24+
recipients:
25+
26+
on_success: always
27+
on_failure: always

0 commit comments

Comments
 (0)