From 7d5644d3e7b1362820a7820bdf98e1209a30de68 Mon Sep 17 00:00:00 2001 From: Yuval Adam <_@yuv.al> Date: Mon, 28 Sep 2020 22:52:48 +0300 Subject: Fix GeoIP path configs --- iss/tests/test_geo.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'iss/tests') diff --git a/iss/tests/test_geo.py b/iss/tests/test_geo.py index c63c2d6..6c25b07 100644 --- a/iss/tests/test_geo.py +++ b/iss/tests/test_geo.py @@ -1,10 +1,11 @@ import pytest -from ..config import GEOIP_CITY_PATH +from ..config import GEOIP_GEOLITE2_CITY_PATH from ..geo import get_location geoip_required = pytest.mark.skipif( - not GEOIP_CITY_PATH, reason="Path to GeoLite2 city database must be provided" + not GEOIP_GEOLITE2_CITY_PATH, + reason="Path to GeoLite2 city database must be provided", ) -- cgit v1.3.1