-
Notifications
You must be signed in to change notification settings - Fork 23
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
Resurrect CI #177
Resurrect CI #177
Conversation
The tests work, only junit fail. I'm not sure how useful that is, having never used it. |
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.
The JUnit task as far as I know is just to display the test results in a way similar to what we had on Jenkins. It looks like either the xml artifacts are not being created or the path in pipeline.yml
(artifact_paths: "*-junit.xml"
) is wrong, since no artifacts are being uploaded. But you could comment the JUnit job until it's fixed or removed so you have a green build 👍
The backport to
To backport manually, run these commands in your terminal: # Fetch latest updates from GitHub
git fetch
# Create a new working tree
git worktree add .worktrees/backport-8.10 8.10
# Navigate to the new working tree
cd .worktrees/backport-8.10
# Create a new branch
git switch --create backport-177-to-8.10
# Cherry-pick the merged commit of this pull request and resolve the conflicts
git cherry-pick -x --mainline 1 ac54e31f57384c703c5b34941d83d99f34f2904a
# Push it to GitHub
git push --set-upstream origin backport-177-to-8.10
# Go back to the original working tree
cd ../..
# Delete the working tree
git worktree remove .worktrees/backport-8.10 Then, create a pull request where the |
* Replace expired test certificates * Allow run-tests outside of Buildkite * Support Python 3.11 explicitly * Fix pytest-asyncio usage * Fix test_workplace_search * Fail explicitly on error cases * Fix lint * Remove Junit for now (cherry picked from commit ac54e31)
* Resurrect CI (#177) * Replace expired test certificates * Allow run-tests outside of Buildkite * Support Python 3.11 explicitly * Fix pytest-asyncio usage * Fix test_workplace_search * Fail explicitly on error cases * Fix lint * Remove Junit for now (cherry picked from commit ac54e31) * Trigger CI --------- Co-authored-by: Quentin Pradet <[email protected]>
* Resurrect CI (#177) * Replace expired test certificates * Allow run-tests outside of Buildkite * Support Python 3.11 explicitly * Fix pytest-asyncio usage * Fix test_workplace_search * Fail explicitly on error cases * Fix lint * Remove Junit for now (cherry picked from commit ac54e31) * Trigger CI --------- Co-authored-by: Quentin Pradet <[email protected]>
No description provided.