зеркало из
1
0
Форкнуть 0

removed unnecessary manual pytestmark

This commit is contained in:
Carter Tinney 2024-07-15 13:29:05 -07:00
Родитель 54273fa881
Коммит cf689f107d
5 изменённых файлов: 1 добавлений и 4 удалений

Просмотреть файл

@ -1,4 +1,5 @@
[pytest]
asyncio_mode=auto
testdox_format = plaintext
addopts = --testdox --timeout 20 --ignore e2e --ignore tests/e2e
norecursedirs=__pycache__, *.egg-info

Просмотреть файл

@ -11,7 +11,6 @@ import logging
import azure.iot.device.common.async_adapter as async_adapter
logging.basicConfig(level=logging.DEBUG)
pytestmark = pytest.mark.asyncio
@pytest.fixture

Просмотреть файл

@ -44,7 +44,6 @@ from ..shared_client_tests import (
SharedIoTHubModuleClientCreateFromEdgeEnvironmentWithDebugEnvTests,
)
pytestmark = pytest.mark.asyncio
logging.basicConfig(level=logging.DEBUG)

Просмотреть файл

@ -16,7 +16,6 @@ from azure.iot.device.iothub.sync_handler_manager import MESSAGE, METHOD, TWIN_D
from azure.iot.device.iothub.inbox_manager import InboxManager
from azure.iot.device.iothub.aio.async_inbox import AsyncClientInbox
pytestmark = pytest.mark.asyncio
logging.basicConfig(level=logging.DEBUG)
# NOTE ON TEST IMPLEMENTATION:

Просмотреть файл

@ -20,7 +20,6 @@ from ..shared_client_tests import (
logging.basicConfig(level=logging.DEBUG)
pytestmark = pytest.mark.asyncio
async def create_completed_future(result=None):