Skip to content

Commit 572eac6

Browse files
committed
update build env
1 parent f555370 commit 572eac6

File tree

2 files changed

+15
-8
lines changed

2 files changed

+15
-8
lines changed

.appveyor.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,15 @@ environment:
1414
PYTHON_VERSION: "3.6.x"
1515
PYTHON_ARCH: "64"
1616

17+
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019
18+
PYTHON: "C:\\Python36-x64"
19+
PYTHON_VERSION: "3.6.x"
20+
PYTHON_ARCH: "64"
21+
1722
install:
1823
- curl -LfsS -o vswhere.exe https://github.com/Microsoft/vswhere/releases/download/2.3.7/vswhere.exe
1924
- "set PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%"
20-
- "%CMD_IN_ENV% pip install -U pytest pytest-asyncio mock six pyyaml"
25+
- "%CMD_IN_ENV% pip install -U pytest pytest-asyncio mock pyyaml"
2126

2227
# At this point we are only building and testing the asyncio-based scheduler on Windows.
2328
build: off

.travis.yml

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,22 @@
11
dist: xenial
22
language: python
33

4-
matrix:
4+
jobs:
55
include:
66
- os: linux
7-
python: "3.6"
7+
python: 3.6
88
env: flake8=true
99
- os: linux
10-
python: "3.6"
10+
python: 3.6
1111
env: doc=true
1212
- os: linux
13-
python: "3.6"
14-
env: PYTHON=3
13+
python: 3.6
14+
- os: linux
15+
python: 3.7
16+
- os: linux
17+
python: 3.8
1518
- os: osx
1619
language: generic
17-
env: PYTHON=3
1820

1921
addons:
2022
apt:
@@ -35,7 +37,7 @@ before_install:
3537
fi
3638
3739
install:
38-
- pip install -U pytest pytest-asyncio mock six flake8 pyyaml codecov pytest-cov
40+
- pip install -U pytest pytest-asyncio mock flake8 pyyaml codecov pytest-cov
3941
- if [ "$doc" = true ]; then pip install -U sphinx sphinx-argparse pygraphviz; fi
4042

4143
script:

0 commit comments

Comments
 (0)