Revision 91abececbac94b5bd7d3fd0b7e082e854671c45f authored by Kevin Sheppard on 04 August 2016, 12:28:00 UTC, committed by Kevin Sheppard on 04 August 2016, 12:28:00 UTC
Update readme and binstar recipes

[skip ci]
1 parent 71eaa6a
Raw File
.travis_coveragerc
# .coveragerc to control coverage.py
[run]
source = arch
branch = True
include = */arch/*
omit = *test_*.py

[report]
# Regexes for lines to exclude from consideration
exclude_lines =
    # Have to re-enable the standard pragma
    pragma: no cover

    # Don't complain if tests don't hit defensive assertion code:
    raise NotImplementedError
    except NotImplementedError
    # Ignore pass
    pass
include = */arch/*
omit = *test_*.py,*/compat/*,*recursions.py,*samplers.py
ignore_errors = True
back to top