diff options
author | Todd Leonhardt <todd.leonhardt@gmail.com> | 2018-04-15 12:40:27 -0700 |
---|---|---|
committer | Todd Leonhardt <todd.leonhardt@gmail.com> | 2018-04-15 12:40:27 -0700 |
commit | 3cd6de492febad076ff0d3b3d42df523e663bf4b (patch) | |
tree | 8f428c199100998120b2f321d45cfcd1a8522eca | |
parent | 59b35ab0b0dd686f519dee7363c5ce1e9ea77880 (diff) | |
download | cmd2-git-3cd6de492febad076ff0d3b3d42df523e663bf4b.tar.gz |
Fixed tox.ini so that Windows code coverage analysis will be done for Python 3.6
-rw-r--r-- | tox.ini | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -69,7 +69,9 @@ deps = pytest pytest-xdist six -commands = py.test -v -n2 +commands = + py.test {posargs: -n 2} --cov=cmd2 --cov-report=term-missing + codecov [testenv:py37] deps = |