-
Notifications
You must be signed in to change notification settings - Fork 0
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
Feature: Eventbridge v2: Add connection for api endpoint #15
base: master
Are you sure you want to change the base?
Feature: Eventbridge v2: Add connection for api endpoint #15
Conversation
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.
PR Summary
This pull request adds significant functionality and tests for EventBridge V2 connections, focusing on API endpoints. Here are the key changes:
- Introduced new tests for EventBridge connections, covering creation, listing, describing, updating, and deleting with various authentication types (BASIC, OAUTH_CLIENT_CREDENTIALS, API_KEY).
- Added a new fixture
events_create_connection
in conftest.py to simplify connection testing. - Implemented a helper function
events_connection_wait_for_deleted
to ensure proper cleanup of connections during tests. - Reorganized and expanded test coverage for EventBridge targets, moving integration tests to a dedicated file (test_events_targets.py).
- Added a new test case for ignoring schedules in
put_events
operations, currently skipped for V2 provider.
13 file(s) reviewed, 1 comment(s)
Edit PR Review Bot Settings
len([e for e in events_after["events"] if "manually invoked" in e["message"]]) == 0 | ||
) | ||
|
||
retry(check_invocation, sleep=5, retries=15) |
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.
style: Consider adjusting retry parameters if test is flaky
Motivation
Changes