[elbe-devel] [PATCH 1/2] tests: conftest: gracefully handle missing guestfs module
Thomas Weißschuh
thomas.weissschuh at linutronix.de
Fri Mar 14 18:08:04 CET 2025
If the guestfs module is not installed the plugin can't be used.
Handle this gracefully.
Signed-off-by: Thomas Weißschuh <thomas.weissschuh at linutronix.de>
---
tests/conftest.py | 9 ++++++---
1 file changed, 6 insertions(+), 3 deletions(-)
diff --git a/tests/conftest.py b/tests/conftest.py
index 8d0b3f01fc01b7017b52639b06751656b132cdd4..0117b7e7e9a3c3daedde77f95dd4fab1ccf32ae1 100644
--- a/tests/conftest.py
+++ b/tests/conftest.py
@@ -2,6 +2,9 @@
# SPDX-License-Identifier: GPL-3.0-or-later
# SPDX-FileCopyrightText: 2024 Linutronix GmbH
-import elbevalidate.pytest
-
-pytest_plugins = elbevalidate.pytest.plugin
+try:
+ import elbevalidate.pytest
+ pytest_plugins = elbevalidate.pytest.plugin
+except ModuleNotFoundError as e:
+ if e.name != 'guestfs':
+ raise
--
2.48.1
More information about the elbe-devel
mailing list