Skip to content
This repository was archived by the owner on May 23, 2023. It is now read-only.

Commit 10f5870

Browse files
committed
fix: coveralls
1 parent 29c77b6 commit 10f5870

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

.travis.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,11 @@ env:
44
- TOX_ENV=py27
55

66
install:
7-
- pip install tox
7+
- pip install tox coveralls
88

99
script:
10-
- tox -e $TOX_ENV
10+
- coverage run --source pyethereum setup.py test
11+
#- tox -e $TOX_ENV
12+
13+
after_success:
14+
- coveralls

tox.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ envlist = py27
55
[testenv]
66
setenv =
77
PYTHONPATH = {toxinidir}:{toxinidir}/ethereum
8-
commands = python setup.py test
9-
8+
#commands = python setup.py test
9+
commands = coverage run --source=pyethereum setup.py test
1010
deps =
1111
-r{toxinidir}/requirements.txt

0 commit comments

Comments
 (0)