-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy path.appveyor.yml
37 lines (37 loc) · 1.11 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
skip_commits:
files:
- docs/*
- .travis.yml
skip_branch_with_pr: true
max_jobs: 6
image: Visual Studio 2015
platform: x64
configuration: Debug
init:
- git config --global core.autocrlf input
clone_depth: 1
matrix:
fast_finish: true
install:
# conda 4.5.11 seems to expect that this directory exists already
- mkdir C:\Users\appveyor\.conda
- call C:\Miniconda37-x64\Scripts\activate.bat
# The safety checks are simply intended to ensure that there is enough disk space
# and the user has the necessary permissions to make environment changes. In a CI
# environment these are not necessary and slow things down noticeably on Windows.
- >
conda config
--set always_yes yes
--set changeps1 no
--set auto_update_conda no
--set safety_checks disabled
- conda create -n msdnet -c conda-forge python=3.7 numpy scipy imageio scikit-image psutil h5py tqdm numba scikit-build
- conda activate msdnet
- conda info -a
- conda list --explicit
- python setup.py install
# Not a .NET project, we build in the install step instead
build: false
test_script:
- cd tests
- python traintest.py -v