forked from SublimeText/UnitTesting
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathappveyor.yml
More file actions
28 lines (22 loc) · 764 Bytes
/
Copy pathappveyor.yml
File metadata and controls
28 lines (22 loc) · 764 Bytes
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
# if you are looking for a working example
# refer to https://github.com/randy3k/UnitTesting-example/blob/master/appveyor.yml
environment:
global:
# Your package name
PACKAGE: "UnitTesting"
SUBLIME_TEXT_VERSION : "3"
matrix:
- PCINSTALL: false
- PCINSTALL: true
install:
- ps: .\sbin\appveyor.ps1 "bootstrap" -verbose
- ps: .\sbin\appveyor.ps1 "install_color_scheme_unit" -verbose
- ps: if (${env:PCINSTALL} -eq $true) { .\sbin\appveyor.ps1 "install_package_control" -verbose }
build: off
test_script:
- ps: .\sbin\appveyor.ps1 "run_tests" -coverage -verbose
after_test:
- "SET PYTHON=C:\\Python33"
- "SET PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%"
- pip install codecov
- codecov