-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
49 lines (40 loc) · 1.32 KB
/
appveyor.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# Tensorflow is supported only for windows x64
clone_folder: c:\projects\dermas
environment:
WORKSPACE: C:\projects
matrix:
# For Python versions available on Appveyor, see
# https://www.appveyor.com/docs/windows-images-software/#python
# The list here is complete (excluding Python 2.6, which
# isn't covered by this document) at the time of writing.
#- PYTHON: "C:\\Python27"
# VERSION: 27
# ARCH: x86
#- PYTHON: "C:\\Python33" # does not support opencv
# VERSION: 27
# ARCH: x86
- PYTHON: "C:\\Python34"
VERSION: 34
ARCH: x86
- PYTHON: "C:\\Python35"
VERSION: 35
ARCH: x86
#- PYTHON: "C:\\Python27-x64"
# VERSION: 27
# ARCH: x64
- PYTHON: "C:\\Python35-x64" # pip install --ignore-installed --upgrade https://storage.googleapis.com/tensorflow/windows/cpu/tensorflow-1.1.0-cp35-cp35m-window.whl
VERSION: 35
ARCH: x64
- PYTHON: "C:\\Python36-x64"
VERSION: 36
ARCH: x64
build: off
install:
- "%PYTHON%\\python.exe --version"
- cd %WORKSPACE%\dermas
- "%PYTHON%\\python.exe -m pip install -U pip"
- "%PYTHON%\\python.exe -m pip install -r requirements.txt"
- "%PYTHON%\\python.exe setup.py install"
test_script:
#- IF [%VERSION%] GEQ [35] IF [%ARCH%] == [x64] %PYTHON%\\Scripts\\pytest.exe
- exit 0