Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

remove code coverage for parallelized code #7

Merged
merged 2 commits into from
Oct 29, 2019
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
remove code coverage for parallelized code
  • Loading branch information
sampan501 committed Oct 29, 2019
commit 40e1d40203dddd2cc2c03783d2a5571cce06ddec
2 changes: 1 addition & 1 deletion mgc/independence/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ def _statistic(self, x, y):
independence tests (check desired test class for specifics).
"""

def _perm_stat(self, index):
def _perm_stat(self, index): # pragma: no cover
"""
Helper function that is used to calculate parallel permuted test
statistics.
Expand Down
2 changes: 1 addition & 1 deletion mgc/ksample/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ def __init__(self, indep_test, compute_distance=None):

super().__init__()

def _perm_stat(self, index):
def _perm_stat(self, index): # pragma: no cover
"""
Helper function that is used to calculate parallel permuted test
statistics.
Expand Down
2 changes: 1 addition & 1 deletion mgc/time_series/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ def _statistic(self, x, y):
independence tests (check desired test class for specifics).
"""

def _perm_stat(self, index):
def _perm_stat(self, index): # pragma: no cover
"""
Helper function that is used to calculate parallel permuted test
statistics.
Expand Down