From 44fb4589c2a9d07b50ddfcdb147fe0baf6af86a1 Mon Sep 17 00:00:00 2001 From: Stefan Behnel Date: Sat, 12 Jan 2019 21:36:12 +0100 Subject: [PATCH] Enable C++ tests in appveyor, only only Py2.7/3.7 64 bit for now. --- appveyor.yml | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/appveyor.yml b/appveyor.yml index 018082ef083..a2583670aab 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\*