https://github.com/antoinecarme/pyaf
Raw File
Tip revision: 17bae5d37bda597ac9f03e0758b3d96eac7b214e authored by Antoine Carme on 27 April 2020, 16:34:32 UTC
Updated these logs
Tip revision: 17bae5d
.travis.yml
dist: xenial

language: python
python:
    - 3.7

before_install:
    - sudo apt-get install -y graphviz

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

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

script: 
    - export PYTHONPATH=$PYTHONPATH:..
    - df
    - free
    - cat /proc/cpuinfo
    - 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
    
back to top