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

Split feedback_pipeline into multiple files and added a config manager #77

Merged
merged 2 commits into from
Nov 25, 2024
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
7,366 changes: 33 additions & 7,333 deletions feedback_pipeline.py

Large diffs are not rendered by default.

Empty file added feedback_pipeline/__init__.py
Empty file.
3,424 changes: 3,424 additions & 0 deletions feedback_pipeline/analyzer.py

Large diffs are not rendered by default.

1,001 changes: 1,001 additions & 0 deletions feedback_pipeline/config_manager.py

Large diffs are not rendered by default.

425 changes: 425 additions & 0 deletions feedback_pipeline/data_generation.py

Large diffs are not rendered by default.

27 changes: 27 additions & 0 deletions feedback_pipeline/exceptions.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
class SettingsError(Exception):
# Error in global settings for Feedback Pipeline
# Settings to be implemented, now hardcoded below
pass


class ConfigError(Exception):
# Error in user-provided configs
pass


class RepoDownloadError(Exception):
# Error in downloading repodata
pass


class BuildGroupAnalysisError(Exception):
# Error while processing buildroot build group
pass


class KojiRootLogError(Exception):
pass


class AnalysisError(Exception):
pass
Loading
Loading