-
Notifications
You must be signed in to change notification settings - Fork 3
/
.appveyor.yml
42 lines (35 loc) · 1.12 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
platform:
- amd64
image: Visual Studio 2017
environment:
matrix:
- PYTHON: "C:\\Miniconda3-x64"
# For debugging uncomment the lines below
#init:
# - ps: iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1'))
install:
- cd %APPVEYOR_BUILD_FOLDER%
- git submodule update --init --recursive
- "SET PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%"
- conda config --set always_yes yes --set changeps1 no
- conda env create -f environment.yaml
- activate labellib
- python setup.py install
build: off
# For debugging uncomment the lines below
#on_finish:
# - ps: $blockRdp = $true; iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1'))
#test_script:
# - conda install nose coverage
# - cmd: echo %CD%
# - cmd: cd C:\projects\tttrlib\test\
# - cmd: echo %CD%
# - nosetests
notifications:
- provider: Email
to:
on_build_success: false
on_build_failure: true
on_build_status_changed: false