Skip to content

Commit d20463e

Browse files
committed
Trying to get coveralls to push
1 parent 6840ad3 commit d20463e

File tree

4 files changed

+4
-6
lines changed

4 files changed

+4
-6
lines changed

.travis.yml

+2-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
---
2-
sudo: required
3-
42
language: python
53
python:
64
- "2.7"
@@ -10,10 +8,10 @@ python:
108
# - "3.7"
119

1210
install:
13-
- pip install tox-travis
11+
- pip install tox-travis coveralls
1412

1513
script:
1614
- tox
1715

1816
after_success:
19-
- coveralls --data_file .coverage
17+
- coveralls

pytest.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
[pytest]
2-
addopts = -v -rxXs --doctest-modules --cov=giturlparse --cov-report term-missing:skip-covered
2+
addopts = -v -rxXs --doctest-modules --cov giturlparse --cov-report term-missing
33
norecursedirs = dist doc build .tox .eggs
44
testpaths = test/

test-requirements.txt

-1
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,3 @@ pytest
33
pytest-cov
44
pytest-mock
55
yapf==0.21.0
6-
python-coveralls==2.9.1

tox.ini

+1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ skipsdist = true
99

1010
[testenv]
1111
passenv = *
12+
setenv = COVERAGE_FILE={toxworkdir}/.coverage
1213
deps =
1314
-rrequirements.txt
1415
-rtest-requirements.txt

0 commit comments

Comments
 (0)