-
Notifications
You must be signed in to change notification settings - Fork 17
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
Test Reporter for Container CI #213
Conversation
…s changes applies to the new repository format
Dependency Review✅ No vulnerabilities or license issues or OpenSSF Scorecard issues found.OpenSSF Scorecard
Scanned Manifest Files.github/workflows/integration-test.yaml |
This pull request sets up GitHub code scanning for this repository. Once the scans have completed and the checks have passed, the analysis results for this pull request branch will appear on this overview. Once you merge this pull request, the 'Security' tab will show more code scanning analysis results (for example, for the default branch). Depending on your configuration and choice of analysis tool, future pull requests will be annotated with code scanning analysis results. For more information about GitHub code scanning, check out the documentation. |
…in test-runners *added recreate input
…mment *Also removed validation jobs
- name: Display structure of downloaded files | ||
run: | | ||
ls . | ||
cat combined.json | ||
cat output.txt |
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 be removed assuming you are done debugging
test-runner/test_runner.py
Outdated
) | ||
json_summary_path = f"test-runner-summary-{unique_identifier}.json" | ||
|
||
with open(json_summary_path, "w") as file: |
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.
with open(json_summary_path, "w") as file: | |
with open(json_summary_path, "w", encoding="utf-8") as file: |
This will fix your lint error.
… written and not picked up by upload-artifacts
…runner-summary*.json
|
Resolved case where Challenges and notes to self:Make sure to always use |
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.
LGTM
Description
The following changes in the
.yaml
files worked with the previous forked repository, and will likely require some additional changes as we migrate to the new ai-containers format.Changes Made
upload-artifact
actions inaction.yml
to storetest-runner logs
persistently across each matrix element that was picked up ingroup-diff
merge-logs
action to download artifacts after thetest-runner
completed and usesjq
to produce combined JSON file with all tests and its status, then transfer result tooutput.txt
Validation