-
Notifications
You must be signed in to change notification settings - Fork 74
Ported more tests [3/6] #744
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
base: master
Are you sure you want to change the base?
Conversation
- Fixed a bug where an asyncio Lock was tried to be acquired without a release - Store asyncio tasks in order not to lose them - Removed start/shutdown from AsyncioReactor
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## master #744 +/- ##
==========================================
+ Coverage 93.55% 94.02% +0.47%
==========================================
Files 389 389
Lines 24435 24434 -1
==========================================
+ Hits 22861 22975 +114
+ Misses 1574 1459 -115 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
|
|
||
| async def test_heartbeat_stopped_and_restored(self): | ||
| member2 = self.rc.startMember(self.cluster.id) | ||
| # TODO: remove this |
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.
| from tests.util import random_string | ||
|
|
||
|
|
||
| class ConnectionStrategyTest(unittest.IsolatedAsyncioTestCase, HazelcastTestCase): |
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.
Why did you remove async start tests? I think these can be used on async client without awating to see client's reaction.
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.
Asyncio client doesn't support async start.
No description provided.