Skip to content

Commit 4922e7c

Browse files
committed
remove pytest marks
1 parent bcb5b33 commit 4922e7c

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

tests/integration/synapseclient/models/async/test_schema_organization.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,6 @@ class TestSchemaOrganization:
123123
def init(self, syn: Synapse) -> None:
124124
self.syn = syn
125125

126-
@pytest.mark.asyncio
127126
async def test_create_and_get(self, organization: SchemaOrganization) -> None:
128127
# GIVEN an initialized organization object that hasn't been stored in Synapse
129128
# THEN it shouldn't have any metadata besides it's name
@@ -153,7 +152,6 @@ async def test_create_and_get(self, organization: SchemaOrganization) -> None:
153152
with pytest.raises(SynapseHTTPError):
154153
org2.store()
155154

156-
@pytest.mark.asyncio
157155
async def test_get_json_schemas_async(
158156
self,
159157
organization: SchemaOrganization,
@@ -173,7 +171,6 @@ async def test_get_json_schemas_async(
173171
schema_list2.append(item)
174172
assert len(schema_list2) == 3
175173

176-
@pytest.mark.asyncio
177174
async def test_get_acl_and_update_acl(
178175
self, organization: SchemaOrganization
179176
) -> None:
@@ -300,7 +297,6 @@ class TestCreateSchemaRequest:
300297
def init(self, syn: Synapse) -> None:
301298
self.syn = syn
302299

303-
@pytest.mark.asyncio
304300
async def test_create_schema_request_no_version(
305301
self, module_organization: SchemaOrganization
306302
) -> None:
@@ -342,7 +338,6 @@ async def test_create_schema_request_no_version(
342338
# schema.uri for schema in module_organization.get_json_schema_list()
343339
# ]
344340

345-
@pytest.mark.asyncio
346341
async def test_create_schema_request_with_version(
347342
self, module_organization: SchemaOrganization
348343
) -> None:

0 commit comments

Comments
 (0)