1234567891011121314151617181920212223242526272829303132333435 |
- language: python
- cache: pip
- sudo: required
- python:
- - "3.5"
- before_install:
- - pip install -U pip
- - pip install wheel
- - pip install coveralls
- - sudo apt-get update
- env:
- global:
- - PIP_WHEEL_DIR=$HOME/.cache/pip/wheels
- - PIP_FIND_LINKS=file://$HOME/.cache/pip/wheels
- - THEANO_FLAGS='gcc.cxxflags="-march=core2",floatX=float32'
- install:
- - pip wheel -r requirements.txt
- - pip install -r requirements.txt
- script:
- - py.test . --cov=./
- - flake8 ./
- after_success:
- - coveralls
|