Skip to content

Commit

Permalink
Added ctest again
Browse files Browse the repository at this point in the history
  • Loading branch information
spirosmaggioros committed Aug 1, 2024
1 parent b3ad1b2 commit 9af4d23
Show file tree
Hide file tree
Showing 7 changed files with 6 additions and 10 deletions.
Binary file modified .DS_Store
Binary file not shown.
4 changes: 2 additions & 2 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ jobs:
run: cmake --build . --config $BUILD_TYPE

- name: Run
working-directory: ${{runner.workspace}}/build/tests
working-directory: ${{runner.workspace}}/build
shell: bash
run: ./runUnitTests
run: ctest --output-on-failure

- name: Coverage
working-directory: ${{runner.workspace}}/build
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/macos_test_cases.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,10 @@ jobs:
# Build your program with the given configuration
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}}
- name: Test
working-directory: ${{github.workspace}}/build/tests
working-directory: ${{github.workspace}}/build
# Execute tests defined by the CMake configuration.
# See https://cmake.org/cmake/help/latest/manual/ctest.1.html for more detail
run: ./runUnitTests
run: ctest --output-on-failure
- name: Upload coverage reports to Codecov
uses: codecov/[email protected]
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ubuntu_test_cases.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,10 @@ jobs:
# Build your program with the given configuration
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}}
- name: Test
working-directory: ${{github.workspace}}/build/tests
working-directory: ${{github.workspace}}/build
# Execute tests defined by the CMake configuration.
# See https://cmake.org/cmake/help/latest/manual/ctest.1.html for more detail
run: ./runUnitTests
run: ctest --output-on-failure
- name: clang-tidy
run: bash clang_tidy.sh
#- name: get coverage
Expand Down
1 change: 0 additions & 1 deletion Testing/Temporary/CTestCostData.txt

This file was deleted.

3 changes: 0 additions & 3 deletions Testing/Temporary/LastTest.log

This file was deleted.

Binary file modified examples/.DS_Store
Binary file not shown.

0 comments on commit 9af4d23

Please sign in to comment.