If I have a bats setup_suite.bats file like this ``` #!/bin/bash setup_suite() { cd "$(dirname "$BATS_TEST_FILENAME")" || return 1 } ``` it will result in empty coverage report. If I comment that line with `cd` I get an expected coverage report.