diff options
| author | Mark Adams <mark@markadams.me> | 2015-01-24 17:27:34 -0600 |
|---|---|---|
| committer | Mark Adams <mark@markadams.me> | 2015-01-24 17:30:13 -0600 |
| commit | 12c8ca1cfdcb2acf1a22b000b8b9a8351b5e0de4 (patch) | |
| tree | a525880daf4f703adc8c1fa73724a6ca1aa6bbce /tox.ini | |
| parent | 971546674fdaef6ef8f63e371bb9e502209699b6 (diff) | |
| download | pyjwt-12c8ca1cfdcb2acf1a22b000b8b9a8351b5e0de4.tar.gz | |
Made a few changes to improve testing
- Fix: tox.ini now installs its own coverage.py locally so that it
actually runs in the virtualenv's context.
- Added py34 to Travis-CI configuration like the tox configuration
- Changed TOX_ENV to TOXENV in Travis config to simplify the tox cmd
- Moved `coverage erase` to tox.ini
- Added `coverage report -m` to tox.ini so that a coverage report will
output to the CLI when running `tox` locally.
Diffstat (limited to 'tox.ini')
| -rw-r--r-- | tox.ini | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -2,7 +2,11 @@ envlist = py26, py27, py32, py33, py34 [testenv] -commands = coverage run setup.py test +commands = + coverage erase + coverage run setup.py test + coverage report -m deps = cryptography unittest2 + coverage |
