We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2cb48ad commit fb13effCopy full SHA for fb13eff
tests/_async/test_parser.py
@@ -4,9 +4,11 @@
4
import warnings
5
6
import pytest
7
+import pytest_asyncio
8
9
from geojson_aoi._async.parser import parse_aoi_async
10
11
+pytestmark = pytest.mark.asyncio
12
13
def is_featcol_nested_polygon(geojson) -> bool:
14
"""Check if the data is a FeatureCollection with nested Polygon."""
@@ -17,7 +19,6 @@ def is_featcol_nested_polygon(geojson) -> bool:
17
19
return False
18
20
21
-@pytest.mark.asyncio
22
async def test_polygon(db, polygon_geojson):
23
"""A single Polygon."""
24
result = await parse_aoi_async(db, polygon_geojson)
0 commit comments