Revision 49d37dfd28a2269e1e4c4ade0e7a2505f02762b8 authored by Kevin Sheppard on 17 April 2015, 14:15:05 UTC, committed by Kevin Sheppard on 17 April 2015, 14:15:05 UTC
Adds details explaining how to interpret the output of the forecasting
function.

closes #60

[skip ci]
1 parent 11540f9
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