From 7f4378b6fee66bd98ca0aabd87e43680fb57c4c7 Mon Sep 17 00:00:00 2001 From: Joel Capitao <jcapitao@redhat.com> Date: Mon, 26 Feb 2024 10:03:27 +0100 Subject: [PATCH] Add fixtures explicitly in test requirements Currently, fixtures is pulled as transitive dependency from stestr. In order to always pull it, we have to add it in test requirements file. When bootstrapping at RDO, we have to build cliff without stestr to avoid cylic dep issue, leading to the missing of fixtures in the buildroot. Change-Id: I0b9a521abf8fb3abc67de648d4831691b1b0714e --- test-requirements.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/test-requirements.txt b/test-requirements.txt index d59d8131..5e34c179 100644 --- a/test-requirements.txt +++ b/test-requirements.txt @@ -1,6 +1,7 @@ stestr>=1.0.0 # Apache-2.0 testtools>=2.2.0 # MIT testscenarios>=0.4 # Apache-2.0/BSD +fixtures>=3.0.0 # Apache-2.0/BSD coverage>=5.0 # Apache-2.0