From 658fe566d86935ae596e0c52cc9c2752a5af29b6 Mon Sep 17 00:00:00 2001 From: Gael Duperrey Date: Fri, 25 Aug 2023 08:32:48 +0200 Subject: [PATCH] FSP tests: explictly import package-scoped fixture Signed-off-by: Gael Duperrey --- tests/storage/fsp/conftest.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/storage/fsp/conftest.py b/tests/storage/fsp/conftest.py index fcb16d1da..9b6980687 100644 --- a/tests/storage/fsp/conftest.py +++ b/tests/storage/fsp/conftest.py @@ -1,5 +1,8 @@ import pytest +# Explicitly import package-scoped fixtures (see explanation in pkgfixtures.py) +from pkgfixtures import host_with_saved_yum_state + FSP_REPO_NAME = 'runx' FSP_PACKAGES = ['xcp-ng-xapi-storage']