-
Notifications
You must be signed in to change notification settings - Fork 211
Upload test results to codecov.io #1857
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
1e8d765 to
5883908
Compare
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 PR adds test results upload functionality to codecov.io across multiple CI environments (GitHub Actions and Evergreen) to help identify flaky tests, similar to work previously done in PHPLIB.
- Configures PHP test environments to generate JUnit XML test results files
- Adds Codecov test results upload steps to GitHub Actions workflows
- Implements Codecov CLI integration in Evergreen configuration with proper authentication and flag tagging
Reviewed Changes
Copilot reviewed 3 out of 3 changed files in this pull request and generated 2 comments.
| File | Description |
|---|---|
| .github/workflows/windows-tests.yml | Adds TEST_PHP_JUNIT environment variable and Codecov upload step for Windows tests |
| .github/workflows/tests.yml | Refactors test execution to use environment variables and adds Codecov upload steps for Linux tests |
| .evergreen/config/functions.yml | Implements Codecov CLI download, verification, and test results upload in Evergreen CI |
Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.
This PR replicates work done in PHPLIB to upload test results to codecov.io. This should help with identifying flaky tests.