-
-
Notifications
You must be signed in to change notification settings - Fork 24
/
.appveyor.yml
30 lines (26 loc) · 891 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
skip_tags: true
os: Visual Studio 2015
environment:
matrix:
- PYTHON: "C:\\Python35"
- PYTHON: "C:\\Python35-x64"
- PYTHON: "C:\\Python36"
- PYTHON: "C:\\Python36-x64"
- PYTHON: "C:\\Python37"
- PYTHON: "C:\\Python37-x64"
build_script:
- "git --no-pager log -n2"
- "echo %APPVEYOR_REPO_COMMIT%"
- "SET PATH=%PYTHON%;%PYTHON%\\Scripts;;%PATH%"
- "python --version"
- "python -c \"import struct; print(struct.calcsize('P') * 8)\""
- "pip install ."
- "pip install -Ur test-requirements.txt"
- "pip install codecov"
test_script:
- "mkdir empty"
- "cd empty"
# Make sure it's being imported from where we expect
- "python -c \"import os, async_generator; print(os.path.dirname(async_generator.__file__))\""
- "python -u -m pytest -W error -ra -v -s --pyargs async_generator --cov=async_generator --cov-config=../.coveragerc"
- "codecov"