mirror of
https://github.com/varun-r-mallya/py-libp2p.git
synced 2025-12-31 20:36:24 +00:00
Add flake8-bugbear
This commit is contained in:
1
setup.py
1
setup.py
@ -15,6 +15,7 @@ extras_require = {
|
||||
"black==19.3b0",
|
||||
"isort==4.3.21",
|
||||
"flake8>=3.7.7,<4.0.0",
|
||||
"flake8-bugbear",
|
||||
],
|
||||
"dev": ["tox>=3.13.2,<4.0.0", "docformatter"],
|
||||
}
|
||||
|
||||
@ -32,7 +32,9 @@ async def try_until_success(coro_func, timeout=TIMEOUT_DURATION):
|
||||
break
|
||||
if (time.monotonic() - t_start) >= timeout:
|
||||
# timeout
|
||||
assert False, f"{coro_func} is still failing after `{timeout}` seconds"
|
||||
raise AssertionError(
|
||||
f"{coro_func} is still failing after `{timeout}` seconds"
|
||||
)
|
||||
await asyncio.sleep(0.01)
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user