forked from suavecode/SUAVE
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
34 lines (29 loc) · 867 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
version: 2.4.{build}
branches:
only:
- master
- develop
image: Ubuntu2004
build: off
environment:
COVERALLS_SERVICE_NAME: appveyor
COVERALLS_REPO_TOKEN: m09oo3So3XLf7Xx2GzsylzegXi64U9IOG
init:
- sudo apt-get update
- sudo apt-get install -qq python3-pip
install:
- cd trunk
- python3 -m pip install --upgrade pip
- python3 -m pip install --upgrade numpy
- python3 -m pip install --upgrade scipy==1.7.3
- python3 -m pip install --upgrade scikit-learn
- python3 -m pip install --upgrade matplotlib
- python3 -m pip install --upgrade plotly
- PATH=$PATH:/home/appveyor/.local/bin
- python3 -m pip install coveralls==3.2.0
- python3 setup.py develop --user
- cd ../regression
test_script:
coverage run automatic_regression.py test
on_success:
coveralls