This commit is contained in:
2025-01-26 19:24:23 -08:00
parent 32cd60e92b
commit d1dde0dbc6
4155 changed files with 29170 additions and 216373 deletions

View File

@@ -13,8 +13,8 @@ def test_no_additional_imports():
# "fiona",
# "matplotlib", # matplotlib gets imported by pandas, see below
"mapclassify",
# 'rtree', # rtree actually gets imported if installed
"sqlalchemy",
"psycopg",
"psycopg2",
"geopy",
"geoalchemy2",
@@ -34,5 +34,5 @@ if mods:
blacklist
)
call = [sys.executable, "-c", code]
returncode = subprocess.run(call).returncode
returncode = subprocess.run(call, check=False).returncode
assert returncode == 0