diff options
Diffstat (limited to 'appveyor.yml')
-rw-r--r-- | appveyor.yml | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/appveyor.yml b/appveyor.yml new file mode 100644 index 0000000..d86785b --- /dev/null +++ b/appveyor.yml @@ -0,0 +1,15 @@ +environment: + PYTHON: "C:\\Python34-x64" + PYTHON_VERSION: "3.4.3" + PYTHON_ARCH: "64" + +# set up for nmake: +install: + - '"C:\Program Files\Microsoft SDKs\Windows\v7.1\Bin\SetEnv.cmd" /x64' + - "SET PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%" + +build_script: + - 'nmake' + +test_script: + - 'nmake test' |