Fix distro test failures: Fedora SSL issue, remove Parrot (rip) - #3194
Merged
Conversation
Replace pyenv toolchain with uv python management to fix Python 3.11 + OpenSSL 3.5.7 SSL incompatibility on Fedora 44. Add apt-get retry loop for transient Parrot mirror 502s.
Parrot's package mirror (deb.parrot.sh) has persistent 502 outages that cause CI failures unrelated to BBOT. Kali covers the same Debian-derivative niche with reliable mirrors.
ausmaster
self-requested a review
June 16, 2026 03:58
ausmaster
approved these changes
Jun 16, 2026
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## dev #3194 +/- ##
=====================================
+ Coverage 90% 90% +1%
=====================================
Files 449 449
Lines 44389 44435 +46
=====================================
+ Hits 39716 39762 +46
Misses 4673 4673 ☔ View full report in Codecov by Harness. 🚀 New features to boost your workflow:
|
Merged
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Fedora: Replace pyenv/pip/pipx toolchain with
uv python install 3.12. Pyenv-compiled Python 3.11 has an SSL incompatibility with Fedora 44's OpenSSL 3.5.7, causing[ASN1: NOT_ENOUGH_DATA]on every TLS connection (ansible-galaxy, GitHub downloads). This has been failing 100% of runs across all recent PRs. Using uv's prebuilt Python 3.12 sidesteps the issue entirely and also eliminates the slow pyenv compile step (~90s).Parrot: Removed from the distro test matrix. Parrot's package mirror (
deb.parrot.sh) has persistent 502 outages that cause CI failures completely unrelated to BBOT. Retries don't help when the mirror is down for minutes at a time. Kali already covers the Debian-derivative niche with reliable mirrors.