From 31593a00494f56d1ca36c00741f6e3345b3244a0 Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Mon, 22 Jan 2024 13:27:48 +0100 Subject: [PATCH] tmt: ask for bigger disks and get "df -h" output after testing The tests are currently running out of disk space inside the testing-farm environment. This commit should help debug this by adding `df -h` output after the test is run. It also asks for 200GB disk space (which is probably way more than we need). Note that the docs say that the size is 250GB by default for things running inside the RH ranch so this might be redunant [1]. [1] https://docs.testing-farm.io/Testing%20Farm/0.1/test-request.html#hardware --- plans/all.fmf | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/plans/all.fmf b/plans/all.fmf index 3fe088958..d9e4cf7e0 100644 --- a/plans/all.fmf +++ b/plans/all.fmf @@ -5,6 +5,8 @@ provision: hardware: virtualization: is-supported: true + disk: + - size: ">= 200GB" prepare: how: install package: @@ -17,3 +19,6 @@ prepare: execute: how: tmt script: pytest -s -vv --force-aws-upload +finish: + how: shell + script: df -h