From 0fab874507c456753e53f2544c6f632d9ca9c9fa Mon Sep 17 00:00:00 2001 From: coletdjnz Date: Tue, 24 Jun 2025 21:03:10 +1200 Subject: [PATCH] [test] skip sabr tests if protobug is not installed --- test/test_sabr/conftest.py | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 test/test_sabr/conftest.py diff --git a/test/test_sabr/conftest.py b/test/test_sabr/conftest.py new file mode 100644 index 000000000..f693c576e --- /dev/null +++ b/test/test_sabr/conftest.py @@ -0,0 +1,3 @@ +import pytest + +pytest.importorskip('protobug', reason='protobug is not installed')