-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathappveyor.yml
40 lines (33 loc) · 995 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
---
build: false
environment:
matrix:
- PYTHON: "C:\\Python37"
- PYTHON: "C:\\Python37-x64"
- PYTHON: "C:\\Python38-x64"
# - PYTHON: "C:\\Python39-x64"
# - PYTHON: "C:\\Python310-x64"
# scripts that are called at very beginning, before repo cloning
init:
- "ECHO %PYTHON% %PYTHON_VERSION% %PYTHON_ARCH%"
- SET PATH=%PYTHON%;%PYTHON%\Scripts;%PATH%
- python -m pip install --upgrade pip wheel
# Git command run locally during testing with throw-away repos; values don't
- git config --global user.email "automation@kintyre.co"
- git config --global user.name "App Veyor"
install:
- echo PATH=%PATH%
- python --version
- python -m pip --version
- python -m pip install -r requirements-ci.txt
- python -m pip install .
# This will report setuptools and wheel
- python -m pip freeze --all
test_script:
- ksconf --version
- coverage run -m unittest discover -s tests
after_test:
- codecov
- coveralls
cache:
- '%LOCALAPPDATA%\pip\cache'