Module: check_mk
Branch: master
Commit: 29d5222fc47f6eb264040f6c49a4271be99436ff
URL:
http://git.mathias-kettner.de/git/?p=check_mk.git;a=commit;h=29d5222fc47f6e…
Author: Sven Panne <sp(a)mathias-kettner.de>
Date: Wed Apr 5 08:21:48 2017 +0200
Bumped maximum sizes by 5MB, we mk_logwatch.exe in our repo now. :-P
Change-Id: Id4a3aaae490e9b40d9a39e1cf21b7c46324a0c7a
---
tests/packaging/test_files.py | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/tests/packaging/test_files.py b/tests/packaging/test_files.py
index 2891ae1..6e82a10 100644
--- a/tests/packaging/test_files.py
+++ b/tests/packaging/test_files.py
@@ -25,9 +25,9 @@ def _get_package_paths(version_path, what):
# In case packages grow/shrink this check has to be changed.
@pytest.mark.parametrize("what,min_size,max_size", [
- ("rpm", 119*1024*1024, 185*1024*1024),
- ("deb", 94*1024*1024, 160*1024*1024),
- ("cma", 169*1024*1024, 190*1024*1024),
+ ("rpm", 119*1024*1024, 190*1024*1024),
+ ("deb", 94*1024*1024, 165*1024*1024),
+ ("cma", 169*1024*1024, 195*1024*1024),
])
def test_package_sizes(version_path, what, min_size, max_size):
for pkg in _get_package_paths(version_path, what):