Add source-built HorizonTest UI test container - #121
Open
HanzJas wants to merge 1 commit into
Open
Conversation
|
[APPROVALNOTIFIER] This PR is NOT APPROVED This pull-request has been approved by: The full list of commands accepted by this bot can be found here. DetailsNeeds approval from an approver in each of these files:Approvers can indicate their approval by writing |
This comment was marked as resolved.
This comment was marked as resolved.
HanzJas
force-pushed
the
add-horizon-test-container
branch
from
August 24, 2026 07:51
4141166 to
0f21de8
Compare
Package HorizonTest as openstack-horizontest, matching the tcib image used by test-operator to run Horizon's pytest/selenium UI integration tests against a live dashboard. run_horizontest.sh and horizontest_sudoers are copied verbatim from tcib; runtime behavior (cloning the Horizon test suite at container start, sudo/crudini/openstack CLI usage) is unchanged. Differences from tcib's horizontest.yaml, and why: - Python dependencies (Django, selenium, pytest, horizon, etc.) are resolved via upper-constraints.txt instead of tcib's hardcoded pins, so they track whichever OpenStack release this image targets. - python-openstackclient is added explicitly. tcib's horizontest image gets the openstack CLI for free because horizontest.yaml is nested under base/os/, inheriting python3-openstackclient from os.yaml. This image has no such inherited layer, so it must be declared. - junit2html is dropped: it's unused (run_horizontest.sh only relies on pytest's built-in --junitxml and pytest-html's --html), and it ships no sdist on PyPI, which breaks pybuild-deps. - geckodriver is bumped to v0.37.1 (tcib pins v0.29.0, which only supports Firefox <=90) for compatibility with the current Firefox RPM. Assisted-By: Cursor Claude Sonnet 5
HanzJas
force-pushed
the
add-horizon-test-container
branch
from
August 24, 2026 08:58
0f21de8 to
d21d00e
Compare
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.
Package HorizonTest as openstack-horizontest, matching the tcib image used by test-operator to run Horizon's pytest/selenium UI integration tests against a live dashboard.
run_horizontest.sh and horizontest_sudoers are copied verbatim from tcib; runtime behavior (cloning the Horizon test suite at container start, sudo/crudini/openstack CLI usage) is unchanged.
Differences from tcib's horizontest.yaml, and why:
Assisted-By: Cursor Claude Sonnet 5