You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Refactor imports, add tests, and clean up dependencies
- Replaced local `CaseInsensitiveDict` with `requests.structures.CaseInsensitiveDict` across multiple files
- Added comprehensive test suite including:
* Basic request tests (GET/POST)
* Error handling tests
* Session feature tests (cookies, headers, TLS)
* Test configuration in `conftest.py`
- Added `requests` as a dependency in `pyproject.toml`
- Cleaned up `ClientIdentifiers` type formatting for better readability
Cleanup notes:
1. The removal of `async_tls_client/structures.py` (commit 8283627) should have been part of this changeset since we're migrating to `requests.structures`.
2. The test-related `pyproject.toml` configuration (added in 9c38840) should have been included here instead, as it logically belongs with the new test suite.
This change completes the transition away from internal structures while adding proper test coverage.
0 commit comments