Skip to content

Commit

Permalink
Tests. Enable Python 2.6, 3.5 on AppVeyor
Browse files Browse the repository at this point in the history
  • Loading branch information
diyan committed Dec 20, 2016
1 parent 63163e6 commit bfc37b0
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,15 @@ environment:
# See: http://stackoverflow.com/a/13751649/163740
WITH_COMPILER: "cmd /E:ON /V:ON /C .\\scripts\\run_with_compiler.cmd"
matrix:
# https://www.appveyor.com/docs/installed-software/#python
- PYTHON: "C:\\Python26"
PYTHON_VERSION: "2.6.6"
PYTHON_ARCH: "32"

- PYTHON: "C:\\Python26-x64"
PYTHON_VERSION: "2.6.6"
PYTHON_ARCH: "64"

- PYTHON: "C:\\Python27"
PYTHON_VERSION: "2.7.9"
PYTHON_ARCH: "32"
Expand All @@ -28,6 +37,14 @@ environment:
- PYTHON: "C:\\Python34-x64"
PYTHON_VERSION: "3.4.3"
PYTHON_ARCH: "64"

- PYTHON: "C:\\Python35"
PYTHON_VERSION: "3.5.2"
PYTHON_ARCH: "32"

- PYTHON: "C:\\Python35-x64"
PYTHON_VERSION: "3.5.2"
PYTHON_ARCH: "64"
init:
- ps: |
$ErrorActionPreference = "Stop"
Expand Down

0 comments on commit bfc37b0

Please sign in to comment.