a60732d963
- Changed the Dockerfile to use `python:3.6` base image; - Updated PyPI classifiers to include it; - Added it to tox/travis environments for CI.
10 lines
223 B
INI
10 lines
223 B
INI
[tox]
|
|
envlist = py26, py27, py33, py34, py35, py36
|
|
|
|
[testenv]
|
|
deps =
|
|
pytest
|
|
pytest-cov
|
|
commands =
|
|
pip install -r requirements.txt --use-wheel
|
|
py.test --junitxml=junit-{envname}.xml --cov-report xml tests.py
|