GH actions: fixes and improvements#149
Merged
Merged
Conversation
Remove the virtualenv<20.21.1 during setup tox Signed-off-by: Jonathan Gangi <jgangi@redhat.com>
Use single line `apt-get install` command for multiple packages on "Install OS packages" Signed-off-by: Jonathan Gangi <jgangi@redhat.com>
Collaborator
Author
|
@lslebodn PTAL |
Reviewer's GuideUpdates GitHub Actions workflows to simplify OS package installation and remove the now-unnecessary virtualenv version pin from tox installation across nightly, tox-test, and docs workflows. Flow diagram for updated GitHub Actions workflow stepsflowchart TD
A[Checkout] --> B[Install OS packages
sudo apt-get -y update
sudo apt-get install -y rpm libkrb5-dev]
B --> C[Setup Python
actions/setup-python@v6]
C --> D[Install Tox
pip install tox]
D --> E[Run Tox environments
lint/mypy/tests/docs/security]
File-Level Changes
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
2 tasks
lslebodn
reviewed
May 29, 2026
It's already present in requirements-test.txt Signed-off-by: Jonathan Gangi <jgangi@redhat.com>
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.
Changes
GH Actions: Remove venv workaronud
Remove the virtualenv<20.21.1 during setup tox
GH Actions: Improve Install OS packages
Use single line
apt-get installcommand for multiple packages on "Install OS packages"GH Actions: do not install pytest-cov
It's already present in requirements-test.txt
Summary by Sourcery
Simplify GitHub Actions workflows by removing a legacy virtualenv version pin from tox installation and consolidating OS package installation into a single apt-get command.
Build: