From e05fd6fce65c3ce098c967b193e93819fa1335e2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florent=20Thi=C3=A9ry?= <florent.thiery@ubicast.eu> Date: Tue, 14 Mar 2017 16:03:12 +0100 Subject: [PATCH] reduce min space requirements, refs #20771 --- tests/test_partitions.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/test_partitions.py b/tests/test_partitions.py index f8f9c333..78de1e01 100755 --- a/tests/test_partitions.py +++ b/tests/test_partitions.py @@ -23,14 +23,14 @@ paths = [ { 'mount_point': '/', 'recommended_types': ('ext4',), - 'min_size_gbytes': 20, + 'min_size_gbytes': 15, 'min_free_size_gbytes': 5, }, { 'mount_point': '/home/msuser/msinstance', 'recommended_types': ('ext4', 'nfsv4'), - 'min_size_gbytes': 20, - 'min_free_size_gbytes': 5, + 'min_size_gbytes': 400, + 'min_free_size_gbytes': 10, }, { 'type': 'swap', -- GitLab