Skip to content
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

refactor: streamline pod verification process by removing unnecessary… #593

Merged
merged 1 commit into from
Jan 22, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions tests_scripts/helm/relevant_cve.py
Original file line number Diff line number Diff line change
Expand Up @@ -649,12 +649,11 @@ def start(self):

# 1.3 verify installation
self.verify_running_pods(namespace=statics.CA_NAMESPACE_FROM_HELM_NAME, timeout=360)
TestUtil.sleep(60, "sleep for 60 seconds before creation of workloads")

# P2 apply workloads
Logger.logger.info('apply workloads')
workload_objs: list = self.apply_directory(path=self.test_obj["deployments"], namespace=namespace)
self.verify_all_pods_are_running(namespace=namespace, workload=workload_objs, timeout=360)
self.verify_running_pods(namespace=namespace, timeout=360)

# P3 verify results in storage
# 3 test SBOM and CVEs created as expected in the storage
Expand Down
Loading