File: conftest.py

package info (click to toggle)
python-momepy 0.8.1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 51,428 kB
  • sloc: python: 11,098; makefile: 35; sh: 11
file content (10 lines) | stat: -rw-r--r-- 215 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
import geopandas
import pytest

import momepy


@pytest.fixture(autouse=True)
def add_momepy_and_geopandas(doctest_namespace):
    doctest_namespace["momepy"] = momepy
    doctest_namespace["geopandas"] = geopandas