diff options
author | Todd Leonhardt <todd.leonhardt@gmail.com> | 2018-04-15 15:00:05 -0700 |
---|---|---|
committer | Todd Leonhardt <todd.leonhardt@gmail.com> | 2018-04-15 15:00:05 -0700 |
commit | 65edbbb6c07061e5d6c9ab18362ba43480916b1a (patch) | |
tree | 48873612bd918ba95ee4b6abd3b1cef86b92bf5c | |
parent | 60dddb03d05ccf4088242a524e624f61782dd40f (diff) | |
download | cmd2-git-65edbbb6c07061e5d6c9ab18362ba43480916b1a.tar.gz |
TravisCI (Linux testing) now runs code coverage analysis on Python 3.4 as well
-rw-r--r-- | tox.ini | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -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 = |