forked from stardist/stardist
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.appveyor.yml
81 lines (73 loc) · 2.06 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
# tests are much faster when using "Visual Studio 2017" image. why?
image: Visual Studio 2019
# branches:
# only:
# - master
# - dev
environment:
matrix:
### TF 1
- PYTHON: "C:\\Python36-x64"
PYTHON_VERSION: "3.6.x"
PYTHON_ARCH: "64"
INSTALL_COMMAND: "pip install ."
TF: "tensorflow<2"
- PYTHON: "C:\\Python37-x64"
PYTHON_VERSION: "3.7.x"
PYTHON_ARCH: "64"
INSTALL_COMMAND: "pip install ."
TF: "tensorflow<2"
### TF 2
- PYTHON: "C:\\Python36-x64"
PYTHON_VERSION: "3.6.x"
PYTHON_ARCH: "64"
INSTALL_COMMAND: "pip install ."
TF: "tensorflow"
- PYTHON: "C:\\Python37-x64"
PYTHON_VERSION: "3.7.x"
PYTHON_ARCH: "64"
INSTALL_COMMAND: "pip install ."
TF: "tensorflow"
- PYTHON: "C:\\Python38-x64"
PYTHON_VERSION: "3.8.x"
PYTHON_ARCH: "64"
INSTALL_COMMAND: "pip install ."
TF: "tensorflow"
# ### TF 1
# - PYTHON: "C:\\Python36-x64"
# PYTHON_VERSION: "3.6.x"
# PYTHON_ARCH: "64"
# INSTALL_COMMAND: "pip install stardist"
# TF: "tensorflow"
# - PYTHON: "C:\\Python37-x64"
# PYTHON_VERSION: "3.7.x"
# PYTHON_ARCH: "64"
# INSTALL_COMMAND: "pip install stardist"
# TF: "tensorflow"
# ### TF 2
# - PYTHON: "C:\\Python36-x64"
# PYTHON_VERSION: "3.6.x"
# PYTHON_ARCH: "64"
# INSTALL_COMMAND: "pip install stardist"
# TF: "tensorflow"
# - PYTHON: "C:\\Python37-x64"
# PYTHON_VERSION: "3.7.x"
# PYTHON_ARCH: "64"
# INSTALL_COMMAND: "pip install stardist"
# TF: "tensorflow"
# - PYTHON: "C:\\Python38-x64"
# PYTHON_VERSION: "3.8.x"
# PYTHON_ARCH: "64"
# INSTALL_COMMAND: "pip install stardist"
# TF: "tensorflow"
init:
- echo %PYTHON% %PYTHON_VERSION% %PYTHON_ARCH%
install:
- set PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%
- "python --version"
- "python -m pip install -U pip"
- "pip install \"%TF%\" pytest"
- "%INSTALL_COMMAND%"
build: none
test_script:
- "pytest -v --durations=50 -m \"not gpu\""