From 049488308adcae3038a6676e3b8c865aeb79f49e Mon Sep 17 00:00:00 2001 From: Shubham Ganar <67952129+shubhamsg199@users.noreply.github.com> Date: Thu, 8 Feb 2024 21:10:47 +0530 Subject: [PATCH] Fix scope mismatch issue for VMware tests (#14010) (cherry picked from commit 13d6b8c036fe27c54cc3b5027644af94e1503863) --- pytest_fixtures/component/provision_vmware.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pytest_fixtures/component/provision_vmware.py b/pytest_fixtures/component/provision_vmware.py index 542d8c7a017..507f180a158 100644 --- a/pytest_fixtures/component/provision_vmware.py +++ b/pytest_fixtures/component/provision_vmware.py @@ -4,7 +4,7 @@ from robottelo.config import settings -@pytest.fixture +@pytest.fixture(scope='module') def vmware(request): versions = { 'vmware7': settings.vmware.vcenter7,