-
-
Notifications
You must be signed in to change notification settings - Fork 99
Fix stubtest failures in type stub files #774
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
Conversation
The current CI failures are unrelated to the changes in this PR. I will be proposing fixes for the other failures in a separate PR. |
Add a change note? |
f113141
to
f18d736
Compare
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #774 +/- ##
==========================================
- Coverage 79.31% 79.19% -0.12%
==========================================
Files 29 29
Lines 4197 4197
Branches 538 538
==========================================
- Hits 3329 3324 -5
- Misses 726 728 +2
- Partials 142 145 +3 |
cd2abfd
to
7ca72ce
Compare
891b9d3
to
1cc32ce
Compare
Added missing __all__ declarations to server.pyi and threadpool.pyi to match their corresponding Python modules. Removed cheroot.connections.IS_WINDOWS from stubtest allowlist and added to connections.pyi to fix environment-dependent stubtest failures These changes resolve stubtest validation errors that were preventing CI from passing due to mismatched public API declarations between stub files and runtime modules.
1cc32ce
to
2b7397d
Compare
Co-authored-by: 🇺🇦 Sviatoslav Sydorenko (Святослав Сидоренко) <[email protected]>
@julianz- I've also moved the |
Added missing
__all__
declarations to server.pyi and threadpool.pyi to match their corresponding Python modules. Removed cheroot.connections.IS_WINDOWS from stubtest allowlist and added to connections.pyi to fix environment-dependent stubtest failuresThese changes resolve stubtest validation errors that were preventing CI from passing due to mismatched public API declarations between stub files and runtime modules.
This change is