-
Notifications
You must be signed in to change notification settings - Fork 45
/
.appveyor.yml
47 lines (39 loc) · 949 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
version: 1.0.{build}
# docker support
image: Ubuntu2004
skip_tags: true
max_jobs: 100
build: none
clone_folder: "$HOME/sos"
clone_depth: 50
shallow_clone: false
services:
- docker
environment:
matrix:
- PYTHON: "venv3.8"
- PYTHON: "venv3.9"
install:
- export PATH=/home/appveyor/$PYTHON/bin:$PATH
- echo $PATH
- echo $PYTHON
# packages required by SoS
- pip install -r requirements_dev.txt
- pip install .
test_script:
- cd test
- sh build_test_docker.sh
- python run_tests.py
#
#on_finish:
#- ps: $blockRdp = $true; iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1'))
# do not report coverage because codacy only accept coverage for each commit
#
#on_success:
# - coverage xml
# - python-codacy-coverage -r coverage.xml
notifications:
- provider: Email
to:
- ben.bob@gmail.com
on_build_status_changed: true