forked from piqueserver/piqueserver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathappveyor.yml
47 lines (33 loc) · 820 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
version: 1.0.{build}
pull_requests:
do_not_increment_build_number: true
image: Visual Studio 2017
shallow_clone: true
environment:
PATH: '%PYTHON%;%PYTHON%\Scripts;%PATH%'
matrix:
- PYTHON: C:\Python36-x64
- PYTHON: C:\Python37-x64
- PYTHON: C:\Python38-x64
- PYTHON: C:\Python36
- PYTHON: C:\Python37
- PYTHON: C:\Python38
install:
- cmd: >-
python -m pip install -U pip wheel setuptools
pip --version
if defined DO_EXE (pip install -U pyinstaller)
pip install -r requirements.txt
pip install -r dev-requirements.txt
build_script:
- cmd: >-
python --version
python setup.py build_ext --inplace -c msvc
python setup.py build -c msvc
python setup.py sdist
python setup.py bdist_wheel
test_script:
- cmd: pytest
artifacts:
- path: dist/*
deploy: off