forked from enthought/pyface
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathappveyor.yml
49 lines (40 loc) · 1014 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
build: false
shallow_clone: false
skip_branch_with_pr: true
environment:
global:
PYTHONUNBUFFERED: "1"
INSTALL_EDM_VERSION: "1.9.1"
matrix:
- RUNTIME: '2.7'
TOOLKITS: "pyqt pyside wx"
- RUNTIME: '3.5'
TOOLKITS: "pyqt pyqt5"
- RUNTIME: '3.6'
TOOLKITS: "pyqt pyqt5"
- RUNTIME: '3.6'
TOOLKITS: "pyside2"
matrix:
fast_finish: True
allow_failures:
- RUNTIME: '3.6'
TOOLKITS: "pyside2"
branches:
only:
- master
cache:
- C:\Users\appveyor\.cache -> appveyor-clean-cache.txt
- C:\Users\appveyor\AppData\Local\pip\Cache -> appveyor-clean-cache.txt
init:
- ps: $Env:path = "C:/Enthought/edm;" + $Env:path
- ps: md C:/Users/appveyor/.cache -Force
install:
- install-edm-windows.cmd
- edm install -y wheel click coverage
- appveyor-run.cmd install %runtime% %toolkits%
test_script:
- appveyor-run.cmd test %runtime% %toolkits%
on_success:
- edm run -- coverage combine
- edm run -- pip install codecov
- edm run -- codecov