run k6 in quiet mode

move k6 to the after stage
This commit is contained in:
Florian Schade
2020-12-03 12:16:10 +01:00
parent f61184b1a2
commit abf89d4ba7

View File

@@ -123,7 +123,6 @@ def main(ctx):
before = \
[ buildOcisBinaryForTesting(ctx) ] + \
[benchmark(ctx)] + \
testOcisModules(ctx) + \
testPipelines(ctx)
@@ -142,6 +141,7 @@ def main(ctx):
purge['depends_on'] = getPipelineNames(testPipelines(ctx) + [benchmark(ctx)])
after = [
benchmark(ctx),
manifest(ctx),
changelog(ctx),
readme(ctx),
@@ -557,7 +557,7 @@ def benchmark(ctx):
},
'commands': [
'cd tests/k6',
'for f in ./dist/test-* ; do k6 run "$f" ; done',
'for f in ./dist/test-* ; do k6 run "$f" -q; done',
],
},
],