-
-
Notifications
You must be signed in to change notification settings - Fork 4.2k
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
chore(hybridcloud) Enable stricter types on more modules #70818
Conversation
Move a few more modules into the stricter allow list.
tests/sentry/types/test_region.py
Outdated
@@ -68,11 +69,11 @@ class RegionDirectoryTest(TestCase): | |||
|
|||
@staticmethod | |||
@contextmanager | |||
def _in_global_state(directory: RegionDirectory): | |||
def _in_global_state(directory: RegionDirectory) -> Any: |
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.
Generator[None, None, None]
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## master #70818 +/- ##
===========================================
+ Coverage 57.71% 80.02% +22.30%
===========================================
Files 6498 6504 +6
Lines 290390 290775 +385
Branches 50068 50119 +51
===========================================
+ Hits 167603 232679 +65076
+ Misses 122346 57659 -64687
+ Partials 441 437 -4 |
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.
Move a few more modules into the stricter allow list.