conftest.py 334 B

123456789101112
  1. import numpy
  2. import pytest
  3. shapely20_todo = pytest.mark.xfail(
  4. strict=True, reason="Not yet implemented for Shapely 2.0"
  5. )
  6. shapely20_wontfix = pytest.mark.xfail(strict=True, reason="Will fail for Shapely 2.0")
  7. def pytest_report_header(config):
  8. """Header for pytest."""
  9. return f"dependencies: numpy-{numpy.__version__}"