diff options
author | Bert JW Regeer <bertjw@regeer.org> | 2018-09-05 23:50:38 -0600 |
---|---|---|
committer | Bert JW Regeer <bertjw@regeer.org> | 2018-09-05 23:50:38 -0600 |
commit | 6163c479662d90c9460ab0eb72c51029fb23772c (patch) | |
tree | 9cb349dab10b004f5d8e8d0e9cee6c8340843015 /appveyor.yml | |
parent | 761c30122dc78a8dc13a2e5a1f160416609a45be (diff) | |
download | waitress-6163c479662d90c9460ab0eb72c51029fb23772c.tar.gz |
Have appveyor test Py36/Py37
Diffstat (limited to 'appveyor.yml')
-rw-r--r-- | appveyor.yml | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/appveyor.yml b/appveyor.yml index bc7aa9b..48cb759 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,13 +1,17 @@ environment: matrix: - - PYTHON: "C:\\Python35" - TOXENV: "py35" - PYTHON: "C:\\Python27" TOXENV: "py27" - PYTHON: "C:\\Python27-x64" TOXENV: "py27" - - PYTHON: "C:\\Python35-x64" - TOXENV: "py35" + - PYTHON: "C:\\Python36" + TOXENV: "py36" + - PYTHON: "C:\\Python36-x64" + TOXENV: "py36" + - PYTHON: "C:\\Python37" + TOXENV: "py37" + - PYTHON: "C:\\Python37-x64" + TOXENV: "py37" cache: - '%LOCALAPPDATA%\pip\Cache' |