Drop 'tox' in favour for calling unittest2 directly.

Seems tox pulls in the latest `pip` installer, which doesn't support
Python 3.2.
This commit is contained in:
Stuart Longland 2016-01-31 12:10:38 +10:00
parent 2886e1cadd
commit 24fb672f43
No known key found for this signature in database
GPG Key ID: 4DFA191410BDE3B7
1 changed files with 7 additions and 8 deletions

View File

@ -1,11 +1,10 @@
language: python language: python
python: 2.7 python:
env: - "2.6"
- TOX_ENV=py26 - "2.7"
- TOX_ENV=py27 - "3.2"
- TOX_ENV=py32 - "3.3"
- TOX_ENV=py33
install: install:
- pip install tox - pip install unittest2
script: script:
- tox -e $TOX_ENV - python -m unittest2