forked from SatelliteQE/robottelo
-
Notifications
You must be signed in to change notification settings - Fork 0
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
Label #4
Conversation
This file contains 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
Signed-off-by: Gaurav Talreja <[email protected]>
This PR reverts the change from lru_cache to cachedmethod. The primary goal of the original change was to avoid memory leaks, due to lru_cache holding instances of a class alive longer than they should be. However, for our test framework, the workaround to avoid these memory leaks really aren't worth it. I also added an lru_cache to cli_factory.__getattr__, improving its recurring lookup time substantially. Finally, I corrected a type check that was erroneously converted in the initial pass.
fixing the recording video url
- remove @lru_cache from CLIFactory.__getattr__ - flip output format of cli.Repository.synchronize to from 'csv' to 'base' (output is not in csv format here)
…test (SatelliteQE#13760) Add on premise marker for capsule provisioning test
* Only call related functionallity when record_video is set to true * Add settings options to config template Co-authored-by: dosas <[email protected]>
Add test case for syncable CV export/import
Add test case for incomplete archive import
* Add test for BZ 2139834 * Update test setup to create a discrete LCE, and publish/promote to there * Update test setup to create a discrete LCE, and publish/promote to there * Remove unnecessary publish
* Add test for BZ 1943306 * Add test for BZ 1943306 * Adjust text and asserts * Use global registration template
Signed-off-by: Gaurav Talreja <[email protected]>
Repair setup for package w/ swidtag, install and modular update
…E#14626) Signed-off-by: Gaurav Talreja <[email protected]>
…teQE#14592) This new test verifies that endpoint `/notification_recipients` works and returns correct data structure. It covers bug https://bugzilla.redhat.com/2249970 where this broken endpoint caused some web UI pages to fail to load.
to enable tests for OS other than rhel
* HTTP Proxy UI fixes * Docstring fix
Bumps [deepdiff](https://github.com/seperman/deepdiff) from 6.7.1 to 7.0.1. - [Release notes](https://github.com/seperman/deepdiff/releases) - [Changelog](https://github.com/seperman/deepdiff/blob/master/docs/changelog.rst) - [Commits](seperman/deepdiff@6.7.1...7.0.1) --- updated-dependencies: - dependency-name: deepdiff dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* Get rid of deprecated DRPM repo tests * Fix SRPM repo tests
notifications: exclude some users from long-running tasks email Bugzilla: https://bugzilla.redhat.com/2245056 Verify that users with disabled account or disabled email don't receive email notifications about long-running tasks.
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.
Problem Statement
Solution
Related Issues