Skip to content

Commit

Permalink
minor
Browse files Browse the repository at this point in the history
  • Loading branch information
mmyros committed Feb 23, 2021
1 parent 4c4f5cb commit 1eac5d8
Show file tree
Hide file tree
Showing 4 changed files with 33 additions and 1 deletion.
30 changes: 30 additions & 0 deletions .coveragerc
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# .coveragerc to control coverage.py
[run]
branch = True

[paths]
source =
bayes_window/cli.py

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

# Don't complain about missing debug-only code:
def __repr__
if self\.debug

# Don't complain if tests don't hit defensive assertion code:
raise AssertionError
raise NotImplementedError

# Don't complain if non-runnable code isn't run:
if 0:
if __name__ == .__main__.:

ignore_errors = True

[html]
directory = coverage_html_report
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -25,3 +25,4 @@ sklearn
inflection
nbval
nbsphinx
statsmodels
1 change: 1 addition & 0 deletions requirements_dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -26,3 +26,4 @@ inflection
ipython # for chart.display()
nbval
nbsphinx
statsmodels
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
setup_requirements = ['pytest-runner', 'joblib', 'numpy', 'numpyro', 'bulwark', 'elephant', 'xarray', 'altair',
# 'jax',
# 'jaxlib==0.1.51',
'pandas', 'arviz', 'sklearn', 'inflection','nbsphinx','nbval']
'pandas', 'arviz', 'sklearn', 'inflection','nbsphinx','nbval','statsmodels']

test_requirements = ['pytest>=3', ]

Expand Down

0 comments on commit 1eac5d8

Please sign in to comment.