Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion tests/test_pipelines.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,11 @@
# pyproj automatically opens proj.db and never closes it. We can not wait
# for some dependent code to import it whilst the test is running since then
# the leak checker will think it is a leak.
import pyproj # noqa: F401
# TODO: Remove import after completing DM-54643. Use DM-54656
try:
import pyproj # noqa: F401
except ImportError:
pass

from lsst.pipe.base import Pipeline, PipelineGraph
from lsst.resources import ResourcePath
Expand Down
Loading