mirror of
https://github.com/aptly-dev/aptly.git
synced 2026-06-08 05:50:47 +00:00
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:
+4
-1
@@ -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")))
|
||||
|
||||
Reference in New Issue
Block a user