-
Notifications
You must be signed in to change notification settings - Fork 115
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
Remove nailgun.entities imports in pytest_fixtures #15084
Remove nailgun.entities imports in pytest_fixtures #15084
Conversation
faacec2
to
86f47b3
Compare
86f47b3
to
16b5beb
Compare
|
PRT Result
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ACK on the changes. Can you determine (or get with the component owners) if the failures in PRT are related?
@JacobCallahan @tpapaioa I dont see these failures related to this PR. I see some failures because of removing the nailgun entities. These are need to modified by the component owner. |
@JacobCallahan The PRT test failures / errors are the same before and after these changes, and are unrelated, pre-existing issues. |
(cherry picked from commit 1e952b1)
(cherry picked from commit 1e952b1)
(cherry picked from commit 1e952b1)
Remove nailgun.entities imports in pytest_fixtures (#15084) (cherry picked from commit 1e952b1) Co-authored-by: Tasos Papaioannou <[email protected]>
(cherry picked from commit 1e952b1)
(cherry picked from commit 1e952b1)
Remove nailgun.entities imports in pytest_fixtures (#15084) (cherry picked from commit 1e952b1) Co-authored-by: Tasos Papaioannou <[email protected]>
Remove nailgun.entities imports in pytest_fixtures (#15084) (cherry picked from commit 1e952b1) Co-authored-by: Tasos Papaioannou <[email protected]>
Problem Statement
SAT-22530
Uses of
nailgun.entities.${ENTITY}
should be replaced with${SATELLITE_INSTANCE}.api.${ENTITY}
.Solution
All fixtures under
pytest_fixtures/
now use nailgun through the satellite instance'sapi
attribute, and imports ofnailgun.entities
have been removed.Test results are the same before and after these changes.
with PR changes:
PRT job #6979:
master:
PRT job #6996:
Related Issues