Skip to content

Commit be58908

Browse files
committed
Create win-py envs
1 parent bd2523e commit be58908

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@ addons:
1515

1616
install:
1717
- pip install tox
18-
- export TOX_ENV=`tox --listenvs | grep "py${TRAVIS_PYTHON_VERSION/./}" | tr '\n' ','`
18+
- export TOX_ENV=`tox --listenvs | grep -v win | grep "py${TRAVIS_PYTHON_VERSION/./}" | tr '\n' ','`
1919

2020
script: tox -e $TOX_ENV

appveyor.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,16 +14,16 @@ environment:
1414
- TOXENV: py34-defaultreactor
1515
PYTHON: "C:\\Python34-x64"
1616

17-
- TOXENV: py35-defaultreactor, py35-qt5reactor
17+
- TOXENV: py35-defaultreactor, win-py35-qt5reactor
1818
PYTHON: "C:\\Python35"
1919

20-
- TOXENV: py35-defaultreactor, py35-qt5reactor
20+
- TOXENV: py35-defaultreactor, win-py35-qt5reactor
2121
PYTHON: "C:\\Python35-x64"
2222

23-
- TOXENV: py36-defaultreactor, py36-qt5reactor
23+
- TOXENV: py36-defaultreactor, win-py36-qt5reactor
2424
PYTHON: "C:\\Python36"
2525

26-
- TOXENV: py36-defaultreactor, py36-qt5reactor
26+
- TOXENV: py36-defaultreactor, win-py36-qt5reactor
2727
PYTHON: "C:\\Python36-x64"
2828

2929
install:

tox.ini

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
envlist=
33
py{27,34}-defaultreactor
44
py{35,36}-{default,qt5}reactor
5+
win-py{35,36}-qt5reactor
56
linting
67

7-
88
[testenv]
99
deps=
1010
greenlet
@@ -14,10 +14,10 @@ deps=
1414
qt5reactor: qt5reactor
1515
qt5reactor: pytest-xvfb
1616
qt5reactor: pyqt5
17-
qt5reactor: pywin32
17+
win: pywin32
1818
commands=
19-
defaultreactor: py.test --reactor=default []
20-
qt5reactor: py.test --reactor=qt5reactor []
19+
defaultreactor: py.test --reactor=default
20+
qt5reactor: py.test --reactor=qt5reactor
2121
sitepackages=False
2222

2323
[testenv:linting]

0 commit comments

Comments
 (0)