-
Notifications
You must be signed in to change notification settings - Fork 243
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
Send tests results to Sheet #6873
Send tests results to Sheet #6873
Conversation
✅ Deploy Preview for odo-docusaurus-preview canceled.
|
c6448c3
to
3506489
Compare
890e4be
to
0c4df27
Compare
16529cd
to
3231ca4
Compare
e26e88c
to
cc19c96
Compare
cc19c96
to
001c43d
Compare
.ibm/tools/tests-results/go.mod
Outdated
@@ -0,0 +1,29 @@ | |||
module github.com/feloy/junit-collector |
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.
Can we change the module to something like github.com/redhat-developer/junit-collector
?
.ibm/tools/tests-results/main.go
Outdated
oldDate := time.Now().Add(-15 * 24 * time.Hour) | ||
fmt.Printf("Deleting entries before: %s\n", oldDate.Format("2006-01-02")) | ||
err := db.Clean(ctx, spreadsheetId, oldDate.Format("2006-01-02")) | ||
if err != nil { | ||
panic(err) | ||
} |
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.
This can now be removed. An automation task has been setup to clean 15 days old data every night.
Is it possible to also set this up for podman tests running via GH actions. |
c722245
to
22fe6eb
Compare
SonarCloud Quality Gate failed. 0 Bugs No Coverage information |
/override Kubernetes-Integration-Tests/Kubernetes-Docs-Integration-Tests |
@feloy: Overrode contexts on behalf of feloy: Kubernetes-Integration-Tests/Kubernetes-Docs-Integration-Tests In response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. |
/override OpenShift-Integration-tests/OpenShift-Integration-tests |
@feloy: Overrode contexts on behalf of feloy: OpenShift-Integration-tests/OpenShift-Integration-tests In response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. |
/override "SonarCloud Code Analysis" |
@feloy: Overrode contexts on behalf of feloy: SonarCloud Code Analysis In response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. |
What type of PR is this:
/kind feature
/area testing
What does this PR do / why we need it:
Send data collected into a junit file during integration tests to a Goole Sheet
Which issue(s) this PR fixes:
Fixes #6451
PR acceptance criteria:
Unit test
Integration test
Documentation
How to test changes / Special notes to the reviewer: