-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy path.appveyor.yml
More file actions
28 lines (24 loc) · 817 Bytes
/
.appveyor.yml
File metadata and controls
28 lines (24 loc) · 817 Bytes
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
skip_tags: true
os: Visual Studio 2015
environment:
matrix:
- PYTHON: "C:\\Python35"
- PYTHON: "C:\\Python35-x64"
- PYTHON: "C:\\Python36"
- PYTHON: "C:\\Python36-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, trio_monitor; print(os.path.dirname(trio_monitor.__file__))\""
- "python -u -m pytest -W error -ra -v -s --pyargs trio_monitor --cov=trio_monitor --cov-config=../.coveragerc"
- "codecov"