Make flake8 pass, and run it automatically.

This commit is contained in:
2021-02-22 19:27:43 +01:00
committed by Valentin Lorentz
parent 836cc5d6d2
commit f9d0ec18ff
31 changed files with 235 additions and 281 deletions

View File

@ -1,5 +1,4 @@
import importlib
import sys
import unittest
import _pytest.unittest
@ -81,8 +80,8 @@ def pytest_collection_modifyitems(session, config, items):
# and that node references the UnitTest class
assert issubclass(item.parent.cls, unittest.TestCase)
# and in this project, TestCase classes all inherit either from BaseClientController
# or BaseServerController.
# and in this project, TestCase classes all inherit either from
# BaseClientController or BaseServerController.
if issubclass(item.parent.cls, BaseServerTestCase):
if server_tests:
filtered_items.append(item)