blob: 6dd6f08e11fbc0403d6a4caf1dc54b67b8241012 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
[tox]
envlist = py27,py34,py35,py36,jython,pypy
[testenv]
passenv = CI TRAVIS TRAVIS_* APPVEYOR*
deps =
codecov
mock
pyparsing
pyperclip
pytest
pytest-cov
six
commands=
py.test -v --cov=cmd2 --basetemp={envtmpdir} {posargs}
{envpython} examples/example.py --test examples/exampleSession.txt
codecov
|