The coverage command fails on python3.2 for some reason.
Whatever, I'll just ignore it then.
- "3.3"
- "3.4"
- "3.5"
+ - "pypy"
matrix:
include:
- python: 3.5
- env: TOXENV=flake8
+ env:
+ - TOXENV=flake8
install:
- pip install coveralls
script:
- tox
- - coverage run --source=chevron ./test_spec.py
- - coverage report -m
after_success:
- coveralls
[tox]
-envlist = py26, py27, py33, py34, pypy, flake8
+envlist = py26, py27, py32, py33, py34, py35, pypy, flake8
[testenv]
+deps = coverage
+commands =
+ coverage run --source={toxinidir}/chevron {toxinidir}/test_spec.py
+ coverage report -m
+
+[testenv:py32]
commands = python {toxinidir}/test_spec.py
[testenv:flake8]