Coverage (#5)

* add codecov.yml

* rename and fix codecov.yml

* exclude benchmark and test

* remove unnecessary files

---------

Co-authored-by: k.koide <k.koide@aist.go.jp>
This commit is contained in:
koide3 2024-04-02 18:40:28 +09:00 committed by GitHub
parent 4334429893
commit 8122528445
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 9 additions and 1 deletions

2
.gitignore vendored
View File

@ -2,6 +2,8 @@
build/*
imgui.ini
*.pyc
dist/*
small_gicp.egg-info/*

View File

@ -117,7 +117,7 @@ if(BUILD_BENCHMARKS)
# Odometry benchmark
add_executable(odometry_benchmark
src/small_gicp/util/benchmark_odom.cpp
src/small_gicp/benchmark/benchmark_odom.cpp
src/benchmark/odometry_benchmark_pcl.cpp
src/benchmark/odometry_benchmark_fast_gicp.cpp
src/benchmark/odometry_benchmark_fast_vgicp.cpp

6
codecov.yml Normal file
View File

@ -0,0 +1,6 @@
ignore:
- "include/small_gicp/benchmark/*"
- "src/test/*"
- "src/example/*"
- "src/benchmark/*"
- "src/small_gicp/benchmark/*"