summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Behnel <stefan_ml@behnel.de>2019-01-12 21:36:12 +0100
committerStefan Behnel <stefan_ml@behnel.de>2019-01-12 21:36:12 +0100
commit44fb4589c2a9d07b50ddfcdb147fe0baf6af86a1 (patch)
tree3b802370c508d0766404a0409f6c8e72ed3a483e
parent3f35bed0946e0df8beb7c2029ae7ea1e3c0c8c37 (diff)
downloadcython-44fb4589c2a9d07b50ddfcdb147fe0baf6af86a1.tar.gz
Enable C++ tests in appveyor, only only Py2.7/3.7 64 bit for now.
-rw-r--r--appveyor.yml13
1 files changed, 12 insertions, 1 deletions
diff --git a/appveyor.yml b/appveyor.yml
index 018082ef0..a2583670a 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -7,6 +7,7 @@ environment:
# /E:ON and /V:ON options are not enabled in the batch script interpreter
# See: https://stackoverflow.com/questions/11267463/compiling-python-modules-on-windows-x64/13751649#13751649
WITH_ENV: "cmd /E:ON /V:ON /C .\\appveyor\\run_with_env.cmd"
+ BACKEND: c
matrix:
- PYTHON: "C:\\Python27"
@@ -25,6 +26,11 @@ environment:
PYTHON_VERSION: "3.7"
PYTHON_ARCH: "64"
+ - PYTHON: "C:\\Python37-x64"
+ PYTHON_VERSION: "3.7"
+ PYTHON_ARCH: "64"
+ BACKEND: cpp
+
- PYTHON: "C:\\Python36"
PYTHON_VERSION: "3.6"
PYTHON_ARCH: "32"
@@ -49,6 +55,11 @@ environment:
PYTHON_VERSION: "3.4"
PYTHON_ARCH: "64"
+ - PYTHON: "C:\\Python27-x64"
+ PYTHON_VERSION: "2.7"
+ PYTHON_ARCH: "64"
+ BACKEND: cpp
+
clone_depth: 5
branches:
@@ -74,7 +85,7 @@ test: off
test_script:
- "%PYTHON%\\Scripts\\pip.exe install -r test-requirements.txt"
- "set CFLAGS=/Od /W3"
- - "%WITH_ENV% %PYTHON%\\python.exe runtests.py -vv --no-cpp --no-code-style -j5"
+ - "%WITH_ENV% %PYTHON%\\python.exe runtests.py -vv --backend=%BACKEND% --no-code-style -j5"
artifacts:
- path: dist\*