https://github.com/dhuppenkothen/entrofy
Raw File
Tip revision: 838973f55b4db762ff5fc7729f3add5733955c7b authored by Daniela Huppenkothen on 01 December 2017, 18:40:06 UTC
Included prefixes in construct_mapper function, added tests, updated notebook
Tip revision: 838973f
.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