Skip to content

Commit 8cfd2bc

Browse files
committed
Removed unnecessary manual pytestmark from E2E
1 parent cf689f1 commit 8cfd2bc

12 files changed

+1
-20
lines changed

tests/e2e/iothub_e2e/aio/test_c2d.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
logger = logging.getLogger(__name__)
1111
logger.setLevel(level=logging.INFO)
1212

13-
pytestmark = pytest.mark.asyncio
1413

1514
# TODO: add tests for various application properties
1615
# TODO: is there a way to call send_c2d so it arrives as an object rather than a JSON string?

tests/e2e/iothub_e2e/aio/test_connect_disconnect.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,6 @@
99
logger = logging.getLogger(__name__)
1010
logger.setLevel(level=logging.INFO)
1111

12-
pytestmark = pytest.mark.asyncio
13-
1412

1513
@pytest.mark.describe("Client object")
1614
class TestConnectDisconnect(object):

tests/e2e/iothub_e2e/aio/test_connect_disconnect_stress.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@
1010
logger = logging.getLogger(__name__)
1111
logger.setLevel(level=logging.INFO)
1212

13-
pytestmark = pytest.mark.asyncio
14-
1513

1614
@pytest.mark.stress
1715
@pytest.mark.describe("Client object connect/disconnect stress")

tests/e2e/iothub_e2e/aio/test_infrastructure.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@
44
import pytest
55
import uuid
66

7-
pytestmark = pytest.mark.asyncio
8-
97

108
@pytest.mark.describe("ServiceHelper object")
119
class TestServiceHelper(object):

tests/e2e/iothub_e2e/aio/test_methods.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,6 @@
1111
logger = logging.getLogger(__name__)
1212
logger.setLevel(level=logging.INFO)
1313

14-
pytestmark = pytest.mark.asyncio
15-
1614

1715
@pytest.fixture
1816
def method_name():

tests/e2e/iothub_e2e/aio/test_sas_renewal.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,6 @@
1111
logger = logging.getLogger(__name__)
1212
logger.setLevel(level=logging.INFO)
1313

14-
pytestmark = pytest.mark.asyncio
15-
1614

1715
@pytest.mark.skipif(
1816
test_config.config.auth not in test_config.AUTH_WITH_RENEWING_TOKEN,

tests/e2e/iothub_e2e/aio/test_send_message.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,6 @@
1111
logger = logging.getLogger(__name__)
1212
logger.setLevel(level=logging.INFO)
1313

14-
pytestmark = pytest.mark.asyncio
15-
1614

1715
@pytest.mark.describe("Client send_message method")
1816
class TestSendMessage(object):

tests/e2e/iothub_e2e/aio/test_send_message_stress.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
logger = logging.getLogger(__name__)
1616
logger.setLevel(level=logging.INFO)
1717

18-
pytestmark = pytest.mark.asyncio
1918

2019
# Settings that apply to all tests in this module
2120
TELEMETRY_PAYLOAD_SIZE = 16 * 1024

tests/e2e/iothub_e2e/aio/test_twin.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,6 @@
1111
logger = logging.getLogger(__name__)
1212
logger.setLevel(level=logging.INFO)
1313

14-
pytestmark = pytest.mark.asyncio
15-
1614

1715
# TODO: tests with drop_incoming and reject_incoming
1816

tests/e2e/iothub_e2e/aio/test_twin_stress.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,6 @@
1212
logger = logging.getLogger(__name__)
1313
logger.setLevel(level=logging.INFO)
1414

15-
pytestmark = pytest.mark.asyncio
16-
1715

1816
@pytest.fixture
1917
def toxic():

tests/e2e/provisioning_e2e/tests/test_async_certificate_enrollments.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@
2929
)
3030

3131

32-
pytestmark = pytest.mark.asyncio
3332
logging.basicConfig(level=logging.DEBUG)
3433

3534

tests/e2e/provisioning_e2e/tests/test_async_symmetric_enrollments.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
import os
1414
import uuid
1515

16-
pytestmark = pytest.mark.asyncio
16+
1717
logging.basicConfig(level=logging.DEBUG)
1818

1919

0 commit comments

Comments
 (0)