gitignore a bunch of stuffg

This commit is contained in:
Adeeb Shihadeh
2025-07-27 11:02:07 -07:00
parent af390239dd
commit 75e8982f2f
2 changed files with 4 additions and 5 deletions

7
.gitignore vendored
View File

@@ -17,17 +17,16 @@
*.gcda
*.gcno
*.dump
*.gcov
uv.lock
/dist/
.vscode/
__pycache__/
mull.yml
*.profraw
opendbc/can/build/
opendbc/can/obj/
opendbc/can/packer_pyx.cpp
opendbc/can/parser_pyx.cpp
opendbc/can/packer_pyx.html
opendbc/can/parser_pyx.html
opendbc/dbc/*_generated.dbc
cppcheck-addon-ctu-file-list

View File

@@ -25,7 +25,7 @@ if [ "$1" == "--report" ]; then
fi
# test coverage
GCOV="gcovr -r ../ --fail-under-line=100 -e ^libsafety -e ^../board"
GCOV="gcovr -r $DIR/../ -d --fail-under-line=100 -e ^libsafety -e ^../board"
if ! GCOV_OUTPUT="$($GCOV)"; then
echo -e "FAILED:\n$GCOV_OUTPUT"
exit 1