forked from CSBDeep/CSBDeep
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.appveyor.yml
More file actions
32 lines (27 loc) · 696 Bytes
/
.appveyor.yml
File metadata and controls
32 lines (27 loc) · 696 Bytes
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
branches:
only:
- master
environment:
matrix:
- PYTHON: "C:\\Python35-x64"
PYTHON_VERSION: "3.5.x"
PYTHON_ARCH: "64"
- PYTHON: "C:\\Python36-x64"
PYTHON_VERSION: "3.6.x"
PYTHON_ARCH: "64"
- PYTHON: "C:\\Python37-x64"
PYTHON_VERSION: "3.7.x"
PYTHON_ARCH: "64"
init:
- echo %PYTHON% %PYTHON_VERSION% %PYTHON_ARCH%
install:
- set PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%
- "python --version"
- "python -m pip install -U pip"
- "pip install \"tensorflow<2\" pytest"
- "pip install csbdeep"
- "pip uninstall -y csbdeep"
- "pip install --no-cache-dir --force-reinstall ."
build: none
test_script:
- "pytest -v --durations=50"