Skip to content

Commit 067e044

Browse files
authored
Merge pull request #1700 from nicoddemus/split-appveyor
Split AppVeyor test runs in multiple jobs to avoid timeout issues
2 parents f74dd85 + 10c5e6f commit 067e044

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

appveyor.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,13 @@ environment:
55
# using pytestbot account as detailed here:
66
# https://www.appveyor.com/docs/build-configuration#secure-variables
77

8+
matrix:
9+
# create multiple jobs to execute a set of tox runs on each; this is to workaround having
10+
# builds timing out in AppVeyor
11+
- TOXENV: "linting,py26,py27,py33,py34,py35,pypy"
12+
- TOXENV: "py27-pexpect,py27-xdist,py27-trial,py35-pexpect,py35-xdist,py35-trial"
13+
- TOXENV: "py27-nobyte,doctesting,py27-cxfreeze"
14+
815
install:
916
- echo Installed Pythons
1017
- dir c:\Python*

tox.ini

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
[tox]
22
minversion=2.0
33
distshare={homedir}/.tox/distshare
4+
# make sure to update enviroment list on appveyor.yml
45
envlist=
56
linting,py26,py27,py33,py34,py35,pypy,
67
{py27,py35}-{pexpect,xdist,trial},

0 commit comments

Comments
 (0)