mirror of
https://github.com/BOSWatch/BW3-Core.git
synced 2026-02-01 05:14:41 +01:00
fix test start log message
This commit is contained in:
parent
543719a917
commit
7d8544123b
|
|
@ -26,8 +26,8 @@ from boswatch.network.client import TCPClient
|
|||
import threading
|
||||
|
||||
|
||||
def setup_method(method):
|
||||
logging.debug("[TEST] %s.%s", method.__module__, method.__name__)
|
||||
def setup_function(function):
|
||||
logging.debug("[TEST] %s.%s", function.__module__, function.__name__)
|
||||
|
||||
|
||||
@pytest.fixture
|
||||
|
|
|
|||
|
|
@ -23,8 +23,8 @@ from boswatch.network.broadcast import BroadcastServer
|
|||
from boswatch.network.broadcast import BroadcastClient
|
||||
|
||||
|
||||
def setup_method(method):
|
||||
logging.debug("[TEST] %s.%s", method.__module__, method.__name__)
|
||||
def setup_function(function):
|
||||
logging.debug("[TEST] %s.%s", function.__module__, function.__name__)
|
||||
|
||||
|
||||
@pytest.fixture()
|
||||
|
|
|
|||
|
|
@ -23,8 +23,8 @@ from boswatch.utils import paths
|
|||
from boswatch.configYaml import ConfigYAML
|
||||
|
||||
|
||||
def setup_method(method):
|
||||
logging.debug("[TEST] %s.%s", method.__module__, method.__name__)
|
||||
def setup_function(function):
|
||||
logging.debug("[TEST] %s.%s", function.__module__, function.__name__)
|
||||
|
||||
|
||||
@pytest.fixture
|
||||
|
|
|
|||
|
|
@ -21,8 +21,8 @@ import logging
|
|||
from boswatch.decoder.decoder import Decoder
|
||||
|
||||
|
||||
def setup_method(method):
|
||||
logging.debug("[TEST] %s.%s", method.__module__, method.__name__)
|
||||
def setup_function(function):
|
||||
logging.debug("[TEST] %s.%s", function.__module__, function.__name__)
|
||||
|
||||
|
||||
def test_decoderNoData():
|
||||
|
|
|
|||
|
|
@ -21,8 +21,8 @@ import logging
|
|||
from boswatch.utils import header
|
||||
|
||||
|
||||
def setup_method(method):
|
||||
logging.debug("[TEST] %s.%s", method.__module__, method.__name__)
|
||||
def setup_function(function):
|
||||
logging.debug("[TEST] %s.%s", function.__module__, function.__name__)
|
||||
|
||||
|
||||
def test_logoToLog():
|
||||
|
|
|
|||
|
|
@ -22,8 +22,8 @@ import pytest
|
|||
from boswatch.packet import Packet
|
||||
|
||||
|
||||
def setup_method(method):
|
||||
logging.debug("[TEST] %s.%s", method.__module__, method.__name__)
|
||||
def setup_function(function):
|
||||
logging.debug("[TEST] %s.%s", function.__module__, function.__name__)
|
||||
|
||||
|
||||
@pytest.fixture()
|
||||
|
|
|
|||
|
|
@ -22,8 +22,8 @@ import os
|
|||
from boswatch.utils import paths
|
||||
|
||||
|
||||
def setup_method(method):
|
||||
logging.debug("[TEST] %s.%s", method.__module__, method.__name__)
|
||||
def setup_function(function):
|
||||
logging.debug("[TEST] %s.%s", function.__module__, function.__name__)
|
||||
|
||||
|
||||
def test_fileExists():
|
||||
|
|
|
|||
|
|
@ -23,8 +23,8 @@ import pytest
|
|||
from boswatch.timer import RepeatedTimer
|
||||
|
||||
|
||||
def setup_method(method):
|
||||
logging.debug("[TEST] %s.%s", method.__module__, method.__name__)
|
||||
def setup_function(function):
|
||||
logging.debug("[TEST] %s.%s", function.__module__, function.__name__)
|
||||
|
||||
|
||||
def testTargetFast():
|
||||
|
|
|
|||
Loading…
Reference in a new issue