-
Notifications
You must be signed in to change notification settings - Fork 5
/
.travis.yml
27 lines (22 loc) · 1.16 KB
/
.travis.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
dist: xenial
language: python
python:
- 3.8
before_install:
- sudo apt-get install -y graphviz
install:
pip install scipy numpy pandas sklearn xgboost lightgbm jupyter matplotlib pydot graphviz
script:
- mkdir -p logs
- python ./tests/display_version_info.py
- python ./tests/sample.py
- python ./tests/sample_reg.py
- make PYTHON=python -f tests/Makefile build-test
- python scripts/upload_to_curldu.mp.py
- pip install .
- jupyter nbconvert --to notebook --ExecutePreprocessor.timeout=None --execute doc/sample_demo.ipynb
- jupyter nbconvert --to notebook --ExecutePreprocessor.timeout=None --execute doc/DecisionTree-explain-plot.ipynb
- jupyter nbconvert --to notebook --ExecutePreprocessor.timeout=None --execute doc/sample_DecisionTree-custom-binning.ipynb
- jupyter nbconvert --to notebook --ExecutePreprocessor.timeout=None --execute doc/sample_DecisionTree-scorecard.ipynb
- jupyter nbconvert --to notebook --ExecutePreprocessor.timeout=None --execute doc/sklearn_reason_codes.ipynb
- jupyter nbconvert --to notebook --ExecutePreprocessor.timeout=None --execute doc/sklearn_reason_codes_RandomForest.ipynb