-
Notifications
You must be signed in to change notification settings - Fork 13
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
✅ bot run coverage #609
✅ bot run coverage #609
Conversation
Codecov Report
@@ Coverage Diff @@
## main #609 +/- ##
==========================================
+ Coverage 83.14% 87.74% +4.59%
==========================================
Files 8 8
Lines 356 359 +3
==========================================
+ Hits 296 315 +19
+ Misses 60 44 -16
|
await asyncio.gather(task, asyncio.sleep(2)) | ||
start_bot.assert_awaited | ||
listener_created = listener_instance | ||
assert isinstance(listener_created, Listener) |
Check notice
Code scanning / Bandit
Use of assert detected. The enclosed code will be removed when compiling to optimised byte code. Note test
tests/test_example_plugin.py
Outdated
assert callable(plugin.stop) | ||
assert callable(plugin.send_notification) | ||
assert callable(plugin.send_notification) | ||
assert callable(plugin.should_handle) |
Check notice
Code scanning / Bandit
Use of assert detected. The enclosed code will be removed when compiling to optimised byte code. Note test
assert callable(plugin.stop) | ||
assert callable(plugin.send_notification) | ||
assert callable(plugin.should_handle) | ||
assert callable(plugin.handle_message) |
Check notice
Code scanning / Bandit
Use of assert detected. The enclosed code will be removed when compiling to optimised byte code. Note test
No description provided.