From 96c3dc2b714159845ee6152ecf808563c6974aa0 Mon Sep 17 00:00:00 2001 From: Jonathan Karlsen Date: Mon, 16 Sep 2024 13:02:55 +0200 Subject: [PATCH] Improve pytest skip message for missing git-lfs --- tests/conftest.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/conftest.py b/tests/conftest.py index 46da4bde9e3..2ca46489d13 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -456,7 +456,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