[1bd245]: / .appveyor.yml

Download this file

24 lines (19 with data), 565 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
build: false
environment:
matrix:
- PYTHON_VERSION: 3.7
MINICONDA: C:\Miniconda
init:
- "ECHO %PYTHON_VERSION% %MINICONDA%"
install:
- "set PATH=%MINICONDA%;%MINICONDA%\\Scripts;%PATH%"
- conda config --set always_yes yes --set changeps1 no
- conda update -q conda
- conda config --add channels conda-forge
- conda info -a
- "conda env create -q -n segmentator python=%PYTHON_VERSION% --file requirements.txt"
- activate segmentator
- pip install compoda
- python setup.py install
test_script:
- py.test