-
Notifications
You must be signed in to change notification settings - Fork 846
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
Release 0.76.3: Fixes GitLab URL nesting Issue #2930
Conversation
Updating Dev Branch
Signed-off-by: Sean P. Goggins <[email protected]>
Add support for nested gitlab repos
Run machine learning and contributor breadth every 30 days
augur/tasks/start_tasks.py
Outdated
@@ -143,7 +143,7 @@ def non_repo_domain_tasks(self): | |||
enabled_tasks = [] | |||
|
|||
if not RUNNING_DOCKER and machine_learning_phase.__name__ in enabled_phase_names: | |||
#enabled_tasks.extend(machine_learning_phase()) | |||
enabled_tasks.extend(machine_learning_phase()) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[pylint] reported by reviewdog 🐶
E1120: No value for argument 'repo_git' in function call (no-value-for-parameter)
augur/tasks/start_tasks.py
Outdated
@@ -143,7 +143,7 @@ | |||
enabled_tasks = [] | |||
|
|||
if not RUNNING_DOCKER and machine_learning_phase.__name__ in enabled_phase_names: | |||
#enabled_tasks.extend(machine_learning_phase()) | |||
enabled_tasks.extend(machine_learning_phase()) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[pylint] reported by reviewdog 🐶
E1120: No value for argument 'full_collection' in function call (no-value-for-parameter)
Signed-off-by: Sean P. Goggins <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
Description