https://github.com/antoinecarme/pyaf
Raw File
Tip revision: d4e11a72635ea2b37cadfac2aba887df0ca0ee6b authored by Antoine Carme on 04 April 2020, 16:12:21 UTC
Some package dependencies are optional #117
Tip revision: d4e11a7
.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 pathos 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