https://github.com/antoinecarme/pyaf
Raw File
Tip revision: fb91bc3c406cdf3e3ca62a12504fcf0e015643cd authored by Antoine Carme on 18 September 2018, 09:41:32 UTC
Add XGBoost based models #98
Tip revision: fb91bc3
.travis.yml
language: python
python:
    - 3.6

before_install:
    - sudo apt-get install -y graphviz

cache:
directories:
- $HOME/.cache/matplotlib

install: 
    pip install scipy pandas sklearn matplotlib pydot dill pathos sqlalchemy jupyter xgboost

script: 
    - export PYTHONPATH=$PYTHONPATH:..
    - mkdir -p logs
    - rm -rf ~/.matplotlib
    - rm -rf ~/.cache/matplotlib
    - rm -rf ~/.matplotlib/fontList.cache  
    - fc-cache 
    - python ./tests/bugs/issue_36/display_version_info.py
    - python tests/demos/demo1.py
    - python tests/func/test_ozone.py
    - python tests/func/test_air_passengers.py
    - make PYTHON=python -f tests/Makefile build-test
    - python scripts/upload_to_chunk.io.py
    - pip install .
    - jupyter nbconvert --to notebook --ExecutePreprocessor.timeout=None --execute docs/sample_code.ipynb
    - jupyter nbconvert --to notebook --ExecutePreprocessor.timeout=None --execute docs/PyAF_Introduction.ipynb
    - jupyter nbconvert --to notebook --ExecutePreprocessor.timeout=None --execute docs/PyAF_Exogenous.ipynb
    - jupyter nbconvert --to notebook --ExecutePreprocessor.timeout=None --execute docs/PyAF_Hierarchical_FrenchWineExportation.ipynb
    - jupyter nbconvert --to notebook --ExecutePreprocessor.timeout=None --execute docs/PyAF_GroupedSignals_FrenchWineExportation.ipynb
back to top