Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
shapely / geometry / conftest.py
Size: Mime:
"""Autouse fixtures for doctests."""

import pytest

from shapely.geometry.linestring import LineString


@pytest.fixture(autouse=True)
def add_linestring(doctest_namespace):
    doctest_namespace["LineString"] = LineString