From 6f3c4b6f2a28ef646a5ab31fb1fef73118d84510 Mon Sep 17 00:00:00 2001 From: Marcel Lauhoff Date: Thu, 24 Aug 2023 15:26:46 +0200 Subject: [PATCH] s3tr: Import metrics to results database Signed-off-by: Marcel Lauhoff --- tools/s3tests/to_sqlite.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/s3tests/to_sqlite.py b/tools/s3tests/to_sqlite.py index 4e3a6355..9e2f6e75 100755 --- a/tools/s3tests/to_sqlite.py +++ b/tools/s3tests/to_sqlite.py @@ -74,7 +74,7 @@ def make_full_results_database(results, pytest_markers, db_path): group by results.test """, ) - db["results"].enable_fts(["out", "log_container"]) + db["results"].enable_fts(["out", "log_container", "metrics"]) db["results"].create_index(["result"]) db["results_keywords"].create_index(["keyword"]) db["results_keywords"].create_index(["test"])