-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathappveyor.yml
40 lines (34 loc) · 1.17 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
environment:
matrix:
- PYTHON: "C:\\Python36"
- PYTHON: "C:\\Python37"
build: off
install:
- ps: iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-desktop.ps1'))
- "SET PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%"
- "python -m pip install --upgrade pip"
- "pip install --upgrade cython"
- "pip install numpy"
- "pip install freetype-py"
- "pip install pypng"
- "pip install --upgrade pywavelets"
- "pip install pypiwin32"
- "python setup.py install"
- "echo y | pip uninstall PyQt5"
- "pip install PyQt5==5.9.2"
- "git clone --depth=50 --branch=master https://github.com/populse/populse_db.git C:\\projects\\populse-db"
- "cd C:\\projects\\populse-db"
- "pip install -e .[postgres]"
- "cd .."
- "cd populse-mia-rrm4w"
- "SET PYTHONPATH=C:\\projects\\populse-mia-rrm4w\\python\\populse_mia\\src\\modules\\;%PYTHONPATH%"
test_script:
- "python --version"
- "python .\\python\\populse_mia\\src\\scripts\\test.py -v"
notifications:
- provider: Email
to:
- '{{commitAuthorEmail}}'
on_build_failure: true
on_build_success: false
on_build_status_changed: true