forked from Muterra/py_daemoniker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathappveyor.yml
52 lines (42 loc) · 1.49 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
43
44
45
46
47
48
49
50
51
52
# Notes:
# - Minimal appveyor.yml file is an empty file. All sections are optional.
# - Indent each level of configuration with 2 spaces. Do not use tabs!
# - All section names are case-sensitive.
# - Section names should be unique on each level.
# For help, see: https://packaging.python.org/appveyor/#appveyor-yml
# https://www.appveyor.com/docs/appveyor-yml/
# branches to build
branches:
# whitelist
only:
- master
- develop
# set git clone depth. clone entire repository history if not defined
clone_depth: 5
environment:
matrix:
# For Python versions available on Appveyor, see
# http://www.appveyor.com/docs/installed-software#python
# The list here is complete (excluding Python 2.6, which
# isn't covered by this document) at the time of writing.
- PYTHON: "C:\\Python36"
- PYTHON: "C:\\Python36-x64"
- PYTHON: "C:\\Python35"
- PYTHON: "C:\\Python35-x64"
- PYTHON: "C:\\Python34"
- PYTHON: "C:\\Python34-x64"
matrix:
allow_failures:
- PYTHON: "C:\\Python34"
- PYTHON: "C:\\Python34-x64"
# scripts that run after cloning repository
install:
# We need wheel installed to build wheels
- "%PYTHON%\\python.exe -m pip install wheel"
# by default, all script lines are interpreted as batch
- "%PYTHON%\\python.exe -m pip install psutil"
- "%PYTHON%\\python.exe -m pip install ."
# to run your custom scripts instead of automatic tests
test_script:
- "%PYTHON%\\python.exe tests/supervisor.py"
build: off