From 27959691264f3d6079812b270adeb56bf9d4a289 Mon Sep 17 00:00:00 2001 From: Jiri Kortus Date: Wed, 25 Sep 2019 13:52:44 +0200 Subject: [PATCH] tests: Increase test VM memory to 3 GB The reason for this change is that the tar image kickstart installation test doesn't work with 2 GB. Related: rhbz#1733504 --- test/composertest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/composertest.py b/test/composertest.py index f8a49dae..5fb86ab9 100755 --- a/test/composertest.py +++ b/test/composertest.py @@ -28,7 +28,7 @@ class ComposerTestCase(unittest.TestCase): def setUp(self): self.network = testvm.VirtNetwork(0) - self.machine = testvm.VirtMachine(self.image, networking=self.network.host(), memory_mb=2048) + self.machine = testvm.VirtMachine(self.image, networking=self.network.host(), memory_mb=3072) print("Starting virtual machine '{}'".format(self.image)) self.machine.start()