https://github.com/dhuppenkothen/entrofy
Raw File
Tip revision: a31c8b34cf9e15c23100aabde0f7b56ce5e2fdd3 authored by Daniela Huppenkothen on 23 October 2017, 17:36:50 UTC
Added warning to readme that people shouldn't use the flask app in its current state
Tip revision: a31c8b3
.travis.yml
sudo: false

cache:
    directories:
    - $HOME/env

language: python

notifications:
    email: false

python:
    - 2.7
    - 3.4
    - 3.5
    - 3.6

before_install:
    - bash .travis_dependencies.sh
    - export PATH="$HOME/env/miniconda$TRAVIS_PYTHON_VERSION/bin:$PATH";
    - hash -r
    - source activate test-environment

install:
    - pip install -e .

script:
    - nosetests -v -w tests/ --with-coverage --cover-erase --cover-package=entrofy

after_success:
    - coveralls

back to top