-
Notifications
You must be signed in to change notification settings - Fork 0
/
.appveyor.yml
39 lines (31 loc) · 994 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
version: 0.9.2-{branch}-{build}
stack: python 3
environment:
matrix:
- APPVEYOR_BUILD_WORKER_IMAGE: Ubuntu
- APPVEYOR_BUILD_WORKER_IMAGE: macOS
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019
PYTHON: "C:\\Python36"
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019
PYTHON: "C:\\Python37"
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019
PYTHON: "C:\\Python38"
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019
PYTHON: "C:\\Python39"
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019
PYTHON: "C:\\Python310"
COVERALLS_REPO_TOKEN:
secure: 64bL5OipIuqAwg0nGwbra4tIVBheT7jwIKgDuGuV2SefqhwLATu0dSgc/w+ecUE0
init:
- cmd: set PATH=%PYTHON%;%PYTHON%\Scripts;%PATH%
build: false
matrix:
fast_finish: true
install:
- python -m pip install -U pip
- python -m pip install .[test]
- python -m pip install coveralls
test_script:
- python -m pytest --cov=tesliper --cov-config=.coveragerc test
after_test:
- coveralls