Skip to content

Commit

Permalink
Predict an import error with jaraco.vcs.fixtures
Browse files Browse the repository at this point in the history
  • Loading branch information
bswck committed Aug 6, 2024
1 parent 94a51f7 commit dfe10db
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion jaraco/vcs/fixtures.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
import pytest
try:
import pytest
except ImportError as err:
raise ImportError("`jaraco.vcs.fixtures` requires pytest to be installed.") from err

from .. import vcs

Expand Down

0 comments on commit dfe10db

Please sign in to comment.