-
Notifications
You must be signed in to change notification settings - Fork 48
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
Ignatenko/autoremove weak #293
Conversation
Signed-off-by: Igor Gnatenko <ignatenko@redhat.com>
Signed-off-by: Igor Gnatenko <ignatenko@redhat.com>
@@ -180,7 +204,7 @@ | |||
""" | |||
REPO_TMPL = "/etc/yum.repos.d/{!s}.repo" | |||
HEADINGS_REPO = ["Package", "Tag", "Value"] | |||
PKG_TAGS_REPEATING = ["BuildRequires", "Requires", "Obsoletes", "Provides", "Conflicts", "%pretrans", "%pre", "%post", "%preun", "%postun", "%posttrans", "Requires(pretrans)", "Requires(pre)", "Requires(post)", "Requires(preun)"] | |||
PKG_TAGS_REPEATING = ["BuildRequires", "Requires", "Recommends", "Suggests", "Supplements", "Enhances", "Obsoletes", "Provides", "Conflicts", "%pretrans", "%pre", "%post", "%preun", "%postun", "%posttrans", "Requires(pretrans)", "Requires(pre)", "Requires(post)", "Requires(preun)"] |
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.
[flake8]
- [E501] line too long (282 > 120 characters)
@@ -264,6 +288,10 @@ def given_repository_with_packages(ctx, enabled, rtype, repository, gpgkey=None) | |||
License Public Domain | |||
BuildRequires [] | |||
Requires [] | |||
Recommends [] |
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.
[flake8]
- [W291] trailing whitespace
@@ -264,6 +288,10 @@ def given_repository_with_packages(ctx, enabled, rtype, repository, gpgkey=None) | |||
License Public Domain | |||
BuildRequires [] | |||
Requires [] | |||
Recommends [] | |||
Suggests [] |
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.
[flake8]
- [W291] trailing whitespace
@@ -264,6 +288,10 @@ def given_repository_with_packages(ctx, enabled, rtype, repository, gpgkey=None) | |||
License Public Domain | |||
BuildRequires [] | |||
Requires [] | |||
Recommends [] | |||
Suggests [] | |||
Supplements [] |
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.
[flake8]
- [W291] trailing whitespace
Recommends [] | ||
Suggests [] | ||
Supplements [] | ||
Enhances [] |
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.
[flake8]
- [W291] trailing whitespace
The code looks nice, thanks |
No description provided.