Skip to content

Commit

Permalink
Improve pytest skip message for missing git-lfs
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathan-eq committed Sep 16, 2024
1 parent 29a790f commit 9128cd2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -457,7 +457,8 @@ def block_storage_path(source_root):
if not path.is_dir():
pytest.skip(
"'test-data/block_storage' has not been checked out.\n"
"Run: git submodule update --init --recursive"
"Make sure you have git-lfs installed and run: "
"git submodule update --init --recursive"
)
return path.parent

Expand Down

0 comments on commit 9128cd2

Please sign in to comment.