There are too many failures, so revert most of the additional groups so they can be dealt with one at a time.
@@ -37,7 +37,10 @@ select = [
"F", # pyflakes
"E", # pycodestyle
"W", # pycodestyle warnings
- "S", # flake8-bandit
- "B", # flake8-bugbear
- "A", # flake8-builtins
+# "S", # flake8-bandit
+# "B", # flake8-bugbear
+# "A", # flake8-builtins
]
+ignore = [
+ "E501", # Duplicate of format rule, hits on tests
+]
@@ -1,3 +1,4 @@
+import asyncio
from time import time
import pytest