forked from aio-libs/aiohttp-devtools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.appveyor.yml
32 lines (26 loc) · 902 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
environment:
global:
# Ref: https://stackoverflow.com/a/48093971/595220
# Don't run
# $ chcp 65001
# as it might be harmful
PYTHONIOENCODING: utf-8
matrix:
- PYTHON: "C:\\Python35"
- PYTHON: "C:\\Python35-x64"
- PYTHON: "C:\\Python36"
- PYTHON: "C:\\Python36-x64"
services:
- postgresql
install:
# Ensure the Git Submoduldes have been pulled down too
- git submodule update --init --recursive
- "%PYTHON%\\python.exe -m pip install -U pip wheel setuptools . -r tests/requirements.txt"
build_script:
- "%PYTHON%\\Scripts\\grablib.exe"
- "%PYTHON%\\python.exe -m setup sdist bdist_wheel"
test_script:
- "%PYTHON%\\python.exe -m setup check -rms"
- "%PYTHON%\\python.exe -m pytest --cov=aiohttp_devtools --cov-report term-missing:skip-covered --cov-report xml --junitxml junit-test-results.xml --duration 5 -m \"not isort\" -vv --fulltrace"
artifacts:
- path: dist\*