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

Commit 181038d

Browse files
committed
coverage stuff
1 parent b9526a8 commit 181038d

File tree

2 files changed

+5
-12
lines changed

2 files changed

+5
-12
lines changed

.travis.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ env:
1111
- TOX_ENV=py27
1212
- TOX_ENV=py34
1313
- TOX_ENV=py35
14-
- TOX_ENV=coverage
1514
global:
1615
secure: cKbIgpTJ1yjKLBxpCEiT6IH7NShDWZUE+BvnrAfc+ujCsR6LyLJcKxFQmKnWryJCqg7fp82Ep2bF2oDKzanAROar2xDY1SFGbai42seYMaFCw53YPGJ6u3VNCcfT0rN9BWgE7el/m4fjcD6CRsZYKArNNJbMX8csRt3uXXCFLso=
1716
install:
@@ -25,6 +24,8 @@ script:
2524
- tox -e $TOX_ENV
2625
after_success:
2726
- coveralls
27+
after_script:
28+
- cat .tox/$TOX_ENV/log/*.log
2829
notifications:
2930
slack:
3031
secure: W/UAhQ/GgYwMWrl3aiVAVOWr4WGdWrxUOX/rTB3ZgwDwGqDYLzQO5UqbsQlo1JXPZ6JOWfIPMURhHu7DSfue9dBW6xQ+NL+bFHe9lSXG4nqFK3IjezYyTBzNRJRDbGUvSSqgj6D5cwhJ8BjfUIRPbJz3CxL64KmsNXezEaMY60w=

tox.ini

Lines changed: 3 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,16 @@
22
envlist =
33
py27,
44
py34,
5-
py35,
6-
coverage
7-
5+
py35
86

97
[testenv]
108
commands=
119
coverage run --source ethereum -m py.test --ignore ethereum/tests/test_vm.py --ignore ethereum/tests/test_state.py
1210
coverage run --append --source ethereum -m py.test ethereum/tests/test_vm.py
1311
coverage run --append --source ethereum -m py.test ethereum/tests/test_state.py
12+
coverage report --show-missing
1413
deps =
14+
coverage
1515
-r{toxinidir}/dev_requirements.txt
1616

1717
[testenv:py27]
@@ -22,11 +22,3 @@ basepython=python3.4
2222

2323
[testenv:py35]
2424
basepython=python3.5
25-
26-
27-
[testenv:coverage]
28-
deps =
29-
coverage
30-
skip_install = true
31-
commands =
32-
coverage report --show-missing

0 commit comments

Comments
 (0)