forked from populse/soma-workflow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathappveyor.yml
34 lines (27 loc) · 813 Bytes
/
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
environment:
matrix:
- PYTHON: "C:\\Python27"
PYTHON_VERSION: 2.7
# PYTHON_OPTS: "-W ignore"
- PYTHON: "C:\\Python35"
PYTHON_VERSION: 3.5
#matrix:
#fast_finish: true
build: off
install:
- "SET PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%"
- "python %PYTHON_OPTS% -m pip install --upgrade pip"
- "python %PYTHON_OPTS% -m pip install six>=1.13"
- "if %PYTHON_VERSION%==2.7 (python %PYTHON_OPTS% -m pip install subprocess32)"
- "python %PYTHON_OPTS% setup.py install"
#- "SET PYTHONPATH=C:\\projects\\soma-base\\python;%PYTHONPATH%"
test_script:
- "python --version"
- "python -m soma_workflow.test"
notifications:
- provider: Email
to:
- '{{commitAuthorEmail}}'
on_build_failure: true
on_build_success: false
on_build_status_changed: true