Skip to content

Commit

Permalink
I HATE TYPOS
Browse files Browse the repository at this point in the history
  • Loading branch information
Byrdman32 committed Jan 10, 2025
1 parent 4e28774 commit 504c8c8
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,8 @@ jobs:
run: |
cd /opt/Autonomy_Software/build
ctest --output-on-failure -T Test -T Coverage -R UTest --output-junit UTests.xml
ctest --output-on-failure -T Test -T Coverage -R ITest --output-junit ITests.xml
ctest --output-on-failure -T Test -T Coverage -L UTest --output-junit UTests.xml
ctest --output-on-failure -T Test -T Coverage -L ITest --output-junit ITests.xml
gcovr --root .. --xml-pretty --output AllCoverage.xml
- name: Upload Test Coverage to Codecov
Expand Down
8 changes: 4 additions & 4 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -360,8 +360,8 @@ if (BUILD_TESTS_MODE)

foreach(test_file ${UTests_SRC})
get_filename_component(test_name ${test_file} NAME_WE)
add_test(NAME UTest_${test_name} COMMAND ${EXE_NAME}_UnitTests --gtest_filter=${test_name}Test.* --timestamp=${CURRENT_TIMESTAMP})
set_tests_properties(UTest_${test_name} PROPERTIES LABELS "UnitTest")
add_test(NAME UTest_${test_name} COMMAND ${EXE_NAME}_UnitTests --gtest_filter=${test_name}Test*.* --timestamp=${CURRENT_TIMESTAMP})
set_tests_properties(UTest_${test_name} PROPERTIES LABELS "UTest")
endforeach()
else()
message("No Unit Tests!")
Expand All @@ -373,8 +373,8 @@ if (BUILD_TESTS_MODE)

foreach(test_file ${ITests_SRC})
get_filename_component(test_name ${test_file} NAME_WE)
add_test(NAME ITest_${test_name} COMMAND ${EXE_NAME}_IntegrationTests --gtest_filter=${test_name}Test.* --timestamp=${CURRENT_TIMESTAMP})
set_tests_properties(ITest_${test_name} PROPERTIES LABELS "IntegrationTest")
add_test(NAME ITest_${test_name} COMMAND ${EXE_NAME}_IntegrationTests --gtest_filter=${test_name}Test*.* --timestamp=${CURRENT_TIMESTAMP})
set_tests_properties(ITest_${test_name} PROPERTIES LABELS "iTest")
endforeach()
else()
message("No Integration Tests!")
Expand Down
1 change: 1 addition & 0 deletions codecov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ ignore:
- "examples/*"
- "external/*"
- "tools/*"
- "tests/**"
- "**/CMakeFiles/*"
- "**/*.md"
- "**/*.yml"
Expand Down

0 comments on commit 504c8c8

Please sign in to comment.