Skip to content
This repository has been archived by the owner on Jan 13, 2024. It is now read-only.

Commit

Permalink
add appveyor
Browse files Browse the repository at this point in the history
  • Loading branch information
sdpython committed Oct 28, 2015
1 parent 876b30a commit 67575aa
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 0 deletions.
1 change: 1 addition & 0 deletions .travis.yml
@@ -1,5 +1,6 @@
language: python
python:
- "3.4"
- "3.5"
install:
- pip install -r requirements.txt
Expand Down
39 changes: 39 additions & 0 deletions appveyor.yml
@@ -0,0 +1,39 @@
environment:

global:
# SDK v7.0 MSVC Express 2008's SetEnv.cmd script will fail if the
# /E:ON and /V:ON options are not enabled in the batch script intepreter
# See: http://stackoverflow.com/a/13751649/163740
WITH_COMPILER: "cmd /E:ON /V:ON /C .\\appveyor\\run_with_compiler.cmd"

matrix:

# Pre-installed Python versions, which Appveyor may upgrade to
# a later point release.
# See: http://www.appveyor.com/docs/installed-software#python

- PYTHON: "C:\\Python34-x64"
PYTHON_VERSION: "3.4.x"
PYTHON_ARCH: "64"
WINDOWS_SDK_VERSION: "v7.1"

# DLL issues with Python 3.5
# - PYTHON: "C:\\Python35-x64"
# PYTHON_VERSION: "3.5.x"
# PYTHON_ARCH: "64"
# WINDOWS_SDK_VERSION: "v7.2"

init:
- "ECHO %PYTHON% %PYTHON_VERSION% %PYTHON_ARCH%"

install:
- "%PYTHON%\\python -m pip install --upgrade pip"
- "%PYTHON%\\Scripts\\pip install pymyinstall"
- "%PYTHON%\\Scripts\\pymy_install3 --set=pyquickhelper"
- "%PYTHON%\\Scripts\\pip install pyquickhelper"

build: off

test_script:
- "%PYTHON%\\python -u setup.py build_script"
- "%PYTHON%\\python -u setup.py unittests"

0 comments on commit 67575aa

Please sign in to comment.