Skip to content

Commit 3225099

Browse files
committed
Add Python 3.7 to AppVeyor Windows build/test
1 parent 6bb7e4c commit 3225099

File tree

2 files changed

+12
-2
lines changed

2 files changed

+12
-2
lines changed

.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 py35-win,py36-win
7+
- python -m tox -e py35-win,py36-win,py37-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 = py34,py35,py36,py37,py35-win,py36-win
2+
envlist = py34,py35,py36,py37,py35-win,py36-win,py37-win
33

44
[pytest]
55
testpaths = tests
@@ -73,3 +73,13 @@ deps =
7373
wcwidth
7474
commands = py.test -v
7575

76+
[testenv:py37-win]
77+
deps =
78+
codecov
79+
pyperclip
80+
pyreadline
81+
pytest
82+
pytest-cov
83+
commands =
84+
py.test {posargs} --cov
85+
codecov

0 commit comments

Comments
 (0)