diff --git a/tests/test_export.py b/tests/test_export.py index fbc1f78..7908561 100644 --- a/tests/test_export.py +++ b/tests/test_export.py @@ -1,12 +1,9 @@ from pathlib import Path -import pytest -import asyncio import pyvista as pv from pyvista import examples -@pytest.mark.asyncio -async def test_export(): +def test_export(): mesh = examples.load_uniform() plotter = pv.Plotter(shape=(1, 2)) plotter.add_mesh(mesh, scalars="Spatial Point Data", show_edges=True) @@ -14,6 +11,5 @@ async def test_export(): plotter.add_mesh(mesh, scalars="Spatial Cell Data", show_edges=True) plotter.export_html("pv.html") - await asyncio.sleep(0.1) plotter.close() assert Path("pv.html").exists()