diff --git a/tests/integration/conftest.py b/tests/integration/conftest.py new file mode 100644 index 0000000..d6505cc --- /dev/null +++ b/tests/integration/conftest.py @@ -0,0 +1,8 @@ +import pytest + +from flashgeotext.geotext import GeoText + + +@pytest.fixture +def geotext(): + return GeoText(use_demo_data=True) diff --git a/tests/unit/test_geotext_extractor.py b/tests/integration/test_geotext_extractor.py similarity index 100% rename from tests/unit/test_geotext_extractor.py rename to tests/integration/test_geotext_extractor.py