-
Notifications
You must be signed in to change notification settings - Fork 1.7k
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
integration-tests/smoke: move ccip msging test #15217
Conversation
- PR E2E Core Tests | ||
- Merge Queue E2E Core Tests | ||
- Nightly E2E Tests | ||
test_cmd: cd integration-tests/ && go test smoke/ccip_messaging_test.go -timeout 12m -test.parallel=1 -count=1 -json |
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.
nit:
--- cd integration-tests/ && go test smoke/ccip_messaging_test.go
+++ go test integration-tests/smoke/ccip_messaging_test.go
?
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.
remove -count=1
?
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.
Just a copypasta from the rest of the matrix, would rather stay consistent
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.
-count=1
is important in E2E tests as it disables Go test caching. Which, in the case of these E2E tests, can lead to false negatives.
Move the CCIP messaging test from deployment/ccip to integration-tests/smoke, and transform it into a docker-based test instead of simulated backend.