From b954d86bafcfbb75fa49edd0589b979d86785e98 Mon Sep 17 00:00:00 2001 From: Egor Tensin Date: Wed, 28 Jun 2023 21:40:43 +0200 Subject: test: skip ci.sh w/ Valgrind --- test/conftest.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'test') diff --git a/test/conftest.py b/test/conftest.py index b96f08f..9e81afd 100644 --- a/test/conftest.py +++ b/test/conftest.py @@ -102,7 +102,9 @@ def base_cmd_line(pytestconfig): cmd_line = CmdLine.unbuffered() valgrind = pytestconfig.getoption(PARAM_VALGRIND.codename) if valgrind is not None: - cmd_line = CmdLine.wrap(CmdLine(valgrind), cmd_line) + # Signal to Valgrind that ci.sh should obviously be exempt from memory + # leak checking: + cmd_line = CmdLine.wrap(CmdLine(valgrind, '--trace-children-skip=*/ci.sh', '--'), cmd_line) return cmd_line -- cgit v1.2.3