https://github.com/dhuppenkothen/entrofy
Raw File
Tip revision: 29717efbedfa11e73c11ae7dc57e3ac9027a33c4 authored by Daniela Huppenkothen on 21 July 2017, 17:10:25 UTC
Fixed small bug in mappers where _prepend_prefix got called twice in some instances, also made xticklabels a little nicer
Tip revision: 29717ef
.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