Skip to content

Commit d7fd8c3

Browse files
committed
Merge pull request jpadilla#84 from mark-adams/test-improvements
Test improvements
2 parents 9715466 + 725b5c3 commit d7fd8c3

File tree

2 files changed

+11
-8
lines changed

2 files changed

+11
-8
lines changed

.travis.yml

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,14 @@
11
language: python
2-
python: 2.7
32
sudo: false
43
env:
5-
- TOX_ENV=py26
6-
- TOX_ENV=py27
7-
- TOX_ENV=py32
8-
- TOX_ENV=py33
4+
- TOXENV=py26
5+
- TOXENV=py27
6+
- TOXENV=py32
7+
- TOXENV=py33
8+
- TOXENV=py34
99
install:
1010
- pip install tox coveralls
1111
script:
12-
- coverage erase
13-
- tox -e $TOX_ENV
12+
- tox
1413
after_success:
1514
- coveralls

tox.ini

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,11 @@
22
envlist = py26, py27, py32, py33, py34
33

44
[testenv]
5-
commands = coverage run setup.py test
5+
commands =
6+
coverage erase
7+
coverage run setup.py test
8+
coverage report -m
69
deps =
710
cryptography
811
unittest2
12+
coverage

0 commit comments

Comments
 (0)