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