Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
78f6aea
add a stats tool to count quarantine tests
rnetser Dec 4, 2025
67c2b44
Merge branch 'main' of https://github.com/RedHatQE/openshift-virtuali…
rnetser Jan 8, 2026
1a6e3e8
Add multi-repo quarantine dashboard with per-version stats
rnetser Jan 8, 2026
6afd3c6
Unify version summary and team breakdown tables across repositories
rnetser Jan 8, 2026
56f82f9
update some wording
rnetser Jan 8, 2026
af3217e
add claude code ref
rnetser Jan 8, 2026
12f1cbd
Fix CodeRabbit review comments in generate_dashboard.py
rnetser Jan 11, 2026
b89803e
fix: Address CodeRabbit review - error handling and explicit None check
rnetser Jan 11, 2026
3d913d7
fix: Address CodeRabbit review - implicit bool, stderr, UTC import
rnetser Jan 11, 2026
717f4bb
Merge branch 'main' of https://github.com/RedHatQE/openshift-virtuali…
rnetser Jan 12, 2026
dacd8a2
add init
rnetser Jan 12, 2026
f3859db
fix: Address PR #3000 review comments
rnetser Jan 12, 2026
8f813bb
Merge branch 'main' of https://github.com/RedHatQE/openshift-virtuali…
rnetser Jan 12, 2026
3636332
add init
rnetser Jan 12, 2026
f9f9b7e
fix: Address remaining CodeRabbit review comments
rnetser Jan 12, 2026
c869dd1
Merge branch 'main' of https://github.com/RedHatQE/openshift-virtuali…
rnetser Jan 13, 2026
3b69e83
fix: Add logging for UnicodeDecodeError exception
rnetser Jan 13, 2026
9bfa051
Merge branch 'main' of https://github.com/RedHatQE/openshift-virtuali…
rnetser Jan 13, 2026
d5e6dd8
refactor: Replace subprocess_run with run_command utility
rnetser Jan 13, 2026
978eed7
Merge branch 'main' of https://github.com/RedHatQE/openshift-virtuali…
rnetser Jan 14, 2026
a57d57d
refactor: Address CodeRabbit review comments
rnetser Jan 14, 2026
af368f6
fix: Add verify_stderr=False to git run_command calls
rnetser Jan 14, 2026
5c77276
refactor: Extract constants and improve generate() readability
rnetser Jan 14, 2026
cdda8e0
fix: Use integer tuple for version comparison instead of float
rnetser Jan 14, 2026
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
2 changes: 2 additions & 0 deletions .flake8
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ exclude =
utilities/unittests/*

fcn_exclude_functions =
Path,
relative_to,
re,
group,
os,
Expand Down
5 changes: 4 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -93,8 +93,11 @@ utilities-test = [
"pytest-watch>=4.2.0",
]

[project.scripts]
quarantine-dashboard = "scripts.quarantine_stats.generate_dashboard:main"

[tool.hatch.build.targets.wheel]
packages = ["*"]
packages = ["libs", "scripts", "tests", "utilities"]

[dependency-groups]
dev = [
Expand Down
1 change: 1 addition & 0 deletions scripts/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# skip-unused-code
1 change: 1 addition & 0 deletions scripts/quarantine_stats/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# skip-unused-code
Loading