Skip to content

Commit a89b392

Browse files
committed
Don't run code coverage in Python 3.6 on Windows
1 parent 61020d6 commit a89b392

2 files changed

Lines changed: 12 additions & 2 deletions

File tree

.appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ install:
44
build: off
55

66
test_script:
7-
- python -m tox -e py27,py35,py36
7+
- python -m tox -e py27,py35,py36-win

tox.ini

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py27,py33,py34,py35,py36,py37,pypy
2+
envlist = py27,py33,py34,py35,py36,py36-winpy37,pypy
33

44
[testenv]
55
passenv = CI TRAVIS TRAVIS_* APPVEYOR*
@@ -60,6 +60,16 @@ commands =
6060
py.test -v --cov=cmd2 --basetemp={envtmpdir} {posargs}
6161
codecov
6262

63+
[testenv:py36-win]
64+
deps =
65+
mock
66+
pyparsing
67+
pyperclip
68+
pytest
69+
pytest-xdist
70+
six
71+
commands = py.test -v -n2
72+
6373
[testenv:py37]
6474
deps =
6575
mock

0 commit comments

Comments
 (0)