diff --git a/.github/workflows/valgrind.yml b/.github/workflows/valgrind.yml index 0da3fecf4..f9bc80862 100644 --- a/.github/workflows/valgrind.yml +++ b/.github/workflows/valgrind.yml @@ -46,5 +46,6 @@ jobs: - run: sudo apt update - run: sudo apt install valgrind -y - - run: PYTHONMALLOC=malloc valgrind --leak-check=full --error-exitcode=1 python3 -m pytest -v new_tests/${{ github.event.inputs.test-file }} + # Also print details of directly and indirectly reachable blocks + - run: PYTHONMALLOC=malloc valgrind --leak-check=full --show-leak-kinds=all --error-exitcode=1 python3 -m pytest -v new_tests/${{ github.event.inputs.test-file }} working-directory: test