From 0600cacfadf00e916340f2394f1d3bfc173a3d0b Mon Sep 17 00:00:00 2001 From: Egor Tensin Date: Sun, 9 Jul 2023 15:53:11 +0200 Subject: store process output in SQLite --- test/py/lib/test_repo.py | 3 +++ 1 file changed, 3 insertions(+) (limited to 'test/py/lib/test_repo.py') diff --git a/test/py/lib/test_repo.py b/test/py/lib/test_repo.py index 1922245..3a4d847 100644 --- a/test/py/lib/test_repo.py +++ b/test/py/lib/test_repo.py @@ -46,3 +46,6 @@ class TestRepo(Repo): def count_ci_output_files(self): return len([name for name in os.listdir(self.output_dir) if os.path.isfile(os.path.join(self.output_dir, name))]) + + def output_matches(self, output): + return output.decode().startswith('A CI run happened at ') -- cgit v1.2.3