summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTodd Leonhardt <todd.leonhardt@gmail.com>2018-04-15 15:00:05 -0700
committerTodd Leonhardt <todd.leonhardt@gmail.com>2018-04-15 15:00:05 -0700
commit65edbbb6c07061e5d6c9ab18362ba43480916b1a (patch)
tree48873612bd918ba95ee4b6abd3b1cef86b92bf5c
parent60dddb03d05ccf4088242a524e624f61782dd40f (diff)
downloadcmd2-git-65edbbb6c07061e5d6c9ab18362ba43480916b1a.tar.gz
TravisCI (Linux testing) now runs code coverage analysis on Python 3.4 as well
-rw-r--r--tox.ini6
1 files changed, 5 insertions, 1 deletions
diff --git a/tox.ini b/tox.ini
index dd122d56..c11425be 100644
--- a/tox.ini
+++ b/tox.ini
@@ -11,14 +11,18 @@ setenv =
[testenv:py34]
deps =
+ codecov
pyparsing
pyperclip
pytest
+ pytest-cov
pytest-forked
pytest-xdist
six
wcwidth
-commands = py.test -v -n2 --forked
+commands =
+ py.test {posargs: -n 2} --cov=cmd2 --cov-report=term-missing --forked
+ codecov
[testenv:py35]
deps =