-
Notifications
You must be signed in to change notification settings - Fork 1
/
.appveyor.yml
57 lines (39 loc) · 903 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
version: 1.0.{build}
branches:
only:
- master
- stable
skip_tags: true
max_jobs: 1
image:
- Visual Studio 2022
- Visual Studio 2019
- Visual Studio 2017
clone_depth: 90
init:
- cmd: >-
choco install make || VER>NUL
choco install git || VER>NUL
choco install python --pre || VER>NUL
choco upgrade python --pre || VER>NUL
python -m pip install flake8 || VER>NUL
python -m pip install coverage || VER>NUL
python -m pip install --upgrade doctest || VER>NUL
python -m pip install pytest || VER>NUL
python -m pip install pytest-cov || VER>NUL
choco install codecov || VER>NUL
dir
build_script:
- cmd: make clean
test_script:
- cmd: >-
make test-pytest || VER>NUL
dir
coverage combine || VER>NUL
dir
coverage xml || VER>NUL
dir
codecov -f coverage.xml || VER>NUL
dir
make test-style || VER>NUL
deploy: off