-
Notifications
You must be signed in to change notification settings - Fork 714
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
Antithesis: Skip checks if tx confirmation fails #3563
Merged
Merged
Changes from all commits
Commits
Show all changes
22 commits
Select commit
Hold shift + click to select a range
ea8fb82
Antithesis: Skip checks if tx confirmation fails
StephenButtolph 9d42348
[testing] Switch to logging with zap
maru-ava 72d27a9
fixup: Self-review
maru-ava 1192c19
fixup: s/node/nodeID/ in log output
maru-ava 53d0040
fixup: Fix lint failures
maru-ava 5880edc
fixup: Implement SimpleTestContext.Log
maru-ava 4563083
fixup: Switch antithesis to zap
maru-ava 0f24b3e
Update tests/antithesis/avalanchego/main.go
maru-ava 35ba879
Update tests/antithesis/avalanchego/main.go
maru-ava 7cd40f1
Update tests/antithesis/xsvm/main.go
maru-ava 0ea4cd5
Update tests/antithesis/xsvm/main.go
maru-ava 81e0c55
Update tests/e2e/x/transfer/virtuous.go
maru-ava 1b0abce
Update tests/fixture/bootstrapmonitor/e2e/e2e_test.go
maru-ava bde8d72
Update tests/fixture/e2e/helpers.go
maru-ava a6cad4a
Update tests/fixture/e2e/helpers.go
maru-ava 9c4e037
Update tests/fixture/e2e/helpers.go
maru-ava 292016a
fixup: Respond to review feedback
maru-ava b960199
fixup: Rename and move ginkgo-specific logger and fix level output
maru-ava 34ababd
fixup: Update tmpnet network test to define its own logger
maru-ava 248e86a
merged
StephenButtolph e05b964
merged
StephenButtolph 30052c0
Merge branch 'master' into antithesis-skip-test-on-flaky-error
StephenButtolph File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
should this method be refactored to return an error? It seems to just log an error if one occurs during but then returns nothing.
I could create a follow up PR if so
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.
Because this function doesn't actually perform any modifications, it isn't required to propagate the error up... So that's why I didn't include that in this PR... But it certainly could.