mirror of
https://git.yoctoproject.org/poky
synced 2026-04-18 03:32:13 +02:00
bitbake: Toaster: bug-fix on tests/views/test_views.py
- Create a tmp file for base recipe, otherwise test fail it doesn't exist (Bitbake rev: e865f6dc7c7c4f0b447806d525cd69e72c290800) Signed-off-by: Alassane Yattara <alassane.yattara@savoirfairelinux.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
2403af6533
commit
01e68702fe
@@ -41,7 +41,15 @@ class ViewTests(TestCase):
|
||||
def setUp(self):
|
||||
|
||||
self.project = Project.objects.first()
|
||||
|
||||
self.recipe1 = Recipe.objects.get(pk=2)
|
||||
# create a file and to recipe1 file_path
|
||||
file_path = f"/tmp/{self.recipe1.name.strip().replace(' ', '-')}.bb"
|
||||
with open(file_path, 'w') as f:
|
||||
f.write('foo')
|
||||
self.recipe1.file_path = file_path
|
||||
self.recipe1.save()
|
||||
|
||||
self.customr = CustomImageRecipe.objects.first()
|
||||
self.cust_package = CustomImagePackage.objects.first()
|
||||
self.package = Package.objects.first()
|
||||
|
||||
Reference in New Issue
Block a user