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

@task(hide=True) support #16

Merged
merged 1 commit into from
Jun 18, 2018
Merged
Changes from all commits
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
3 changes: 2 additions & 1 deletion pynt/_pynt.py
Original file line number Diff line number Diff line change
Expand Up @@ -237,6 +237,7 @@ def __init__(self, func, dependencies, options):
self.doc = inspect.getdoc(func) or ''
self.dependencies = dependencies
self.ignored = bool(options.get('ignore', False))
self.show = not bool(options.get('hide', False))

def __call__(self,*args,**kwargs):
self.func.__call__(*args,**kwargs)
Expand All @@ -256,7 +257,7 @@ def _get_tasks(module):
"""
# Get all functions that are marked as task and pull out the task object
# from each (name,value) pair.
return set(member[1] for member in inspect.getmembers(module,Task.is_task))
return set(member[1] for member in inspect.getmembers(module,Task.is_task) if member[1].show)

def _get_max_name_length(module):
"""
Expand Down