https://github.com/antoinecarme/pyaf
Raw File
Tip revision: ee1df9205c3b7bb6c8b15a8a2f5f585d4d11b9ca authored by Antoine Carme on 27 June 2018, 09:12:48 UTC
Use curldu.mp (WIP)
Tip revision: ee1df92
.travis.yml
language: python
python:
    - 3.6

before_install:
  

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

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

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

back to top