From e94cfa863e0a84acf5b201e756842a7a2dd14aee Mon Sep 17 00:00:00 2001 From: iwpnd Date: Wed, 19 Feb 2020 17:05:31 +0100 Subject: [PATCH] moved geotext tests to test/integration --- tests/integration/conftest.py | 8 ++++++++ tests/{unit => integration}/test_geotext_extractor.py | 0 2 files changed, 8 insertions(+) create mode 100644 tests/integration/conftest.py rename tests/{unit => integration}/test_geotext_extractor.py (100%) 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