-
Notifications
You must be signed in to change notification settings - Fork 15
Fix acceptance test timeouts #1018
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
Conversation
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.
Pull request overview
This pull request addresses test reliability issues by reducing the parallelism of Go tests in the CI/CD workflow from 3 to 1. While this may increase test execution time, it can help prevent race conditions and test interference in the acceptance test environment.
Key Changes
- Reduced Go test parallelism from
-p 3to-p 1in the test workflow to improve reliability
…ns and extended timeout
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #1018 +/- ##
==========================================
+ Coverage 68.67% 70.03% +1.36%
==========================================
Files 131 131
Lines 16191 16190 -1
==========================================
+ Hits 11119 11339 +220
+ Misses 4029 3756 -273
- Partials 1043 1095 +52 ☔ View full report in Codecov by Sentry. |
…soft/terraform-provider-power-platform into mawasile/fix-test-timeouts
…nector and set environment variable
…d adjust environment type
…soft/terraform-provider-power-platform into mawasile/fix-test-timeouts
polatengin
left a comment
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 pull request makes a small adjustment to the test workflow configuration. The change reduces the parallelism of Go tests from 3 to 1, which can help with test reliability in environments where tests may interfere with each other.
.github/workflows/run_tests.ymlworkflow to improve test reliability.