aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/test/conftest.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/conftest.py')
-rw-r--r--test/conftest.py4
1 files changed, 3 insertions, 1 deletions
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