Skip to content

Commit 28dac03

Browse files
conftest is updated (formatting, black)
1 parent 9b0c0a4 commit 28dac03

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

tests/conftest.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,10 @@
3939
g_warning_msg_count_key = pytest.StashKey[int]()
4040
g_critical_msg_count_key = pytest.StashKey[int]()
4141

42-
4342
# /////////////////////////////////////////////////////////////////////////////
4443
# T_TEST_PROCESS_KIND
4544

45+
4646
class T_TEST_PROCESS_KIND(enum.Enum):
4747
Master = 1
4848
Worker = 2
@@ -51,6 +51,7 @@ class T_TEST_PROCESS_KIND(enum.Enum):
5151
# /////////////////////////////////////////////////////////////////////////////
5252
# T_TEST_PROCESS_MODE
5353

54+
5455
class T_TEST_PROCESS_MODE(enum.Enum):
5556
Collect = 1
5657
ExecTests = 2
@@ -63,17 +64,18 @@ class T_TEST_PROCESS_MODE(enum.Enum):
6364

6465
g_worker_log_is_created: typing.Optional[bool] = None
6566

66-
6767
# /////////////////////////////////////////////////////////////////////////////
6868
# TestConfigPropNames
6969

70+
7071
class TestConfigPropNames:
7172
TEST_CFG__LOG_DIR = "TEST_CFG__LOG_DIR"
7273

7374

7475
# /////////////////////////////////////////////////////////////////////////////
7576
# TestStartupData__Helper
7677

78+
7779
class TestStartupData__Helper:
7880
sm_StartTS = datetime.datetime.now()
7981

@@ -376,6 +378,7 @@ def helper__build_test_id(item: pytest.Function) -> str:
376378

377379
# /////////////////////////////////////////////////////////////////////////////
378380

381+
379382
def helper__makereport__setup(
380383
item: pytest.Function, call: pytest.CallInfo, outcome: T_PLUGGY_RESULT
381384
):
@@ -1108,4 +1111,5 @@ def pytest_configure(config: pytest.Config) -> None:
11081111

11091112
return
11101113

1114+
11111115
# /////////////////////////////////////////////////////////////////////////////

0 commit comments

Comments
 (0)