Skip to content

Commit 18c400d

Browse files
committed
Trying to fix tox.ini and appveyor.yml to get automated Windows tests to work again
1 parent 8f331cc commit 18c400d

File tree

2 files changed

+30
-2
lines changed

2 files changed

+30
-2
lines changed

.appveyor.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
install:
2-
- python -m pip install tox pyreadline
2+
- python -m pip install tox
33

44
build: off
55

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

tox.ini

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,22 @@ commands =
2424
py.test {posargs: -n 2} --cov=cmd2 --cov-report=term-missing
2525
codecov
2626

27+
[testenv:py27-win]
28+
deps =
29+
codecov
30+
mock
31+
pyparsing
32+
pyperclip
33+
pyreadline
34+
pytest
35+
pytest-cov
36+
pytest-xdist
37+
six
38+
subprocess32
39+
commands =
40+
py.test {posargs: -n 2} --cov=cmd2 --cov-report=term-missing
41+
codecov
42+
2743
[testenv:py33]
2844
deps =
2945
mock
@@ -54,6 +70,17 @@ deps =
5470
six
5571
commands = py.test -v -n2
5672

73+
[testenv:py35-win]
74+
deps =
75+
mock
76+
pyparsing
77+
pyperclip
78+
pyreadline
79+
pytest
80+
pytest-xdist
81+
six
82+
commands = py.test -v -n2
83+
5784
[testenv:py36]
5885
deps =
5986
codecov
@@ -73,6 +100,7 @@ deps =
73100
mock
74101
pyparsing
75102
pyperclip
103+
pyreadline
76104
pytest
77105
pytest-xdist
78106
six

0 commit comments

Comments
 (0)