fix system tests

- use s3 mirror instead of internet download
- reduce download verbosity
- do not use venv in docker-system-tests
- be more verbose on test output
- do not run golangci-lint in system-tests
This commit is contained in:
André Roth
2024-04-10 19:41:38 +02:00
parent 6be4f5e8d0
commit 9deb031c44
61 changed files with 646 additions and 1183 deletions
+4 -1
View File
@@ -245,7 +245,10 @@ class BaseTest(object):
if hasattr(self, "fixtureCmds"):
for cmd in self.fixtureCmds:
self.run_cmd(cmd)
output = self.run_cmd(cmd)
print("\n")
for line in output.decode("utf-8").split("\n"):
print(f" {line}")
def sort_lines(self, output):
return "\n".join(sorted(self.ensure_utf8(output).split("\n")))