Skip to content

Commit

Permalink
Show verbose output from tests seeing as we are just using CTest to c…
Browse files Browse the repository at this point in the history
…all GoogleTest
  • Loading branch information
brofield committed Dec 1, 2024
1 parent e78a198 commit eff1b22
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,12 @@ jobs:
run: |
cmake . -B build -DSIMPLEINI_USE_SYSTEM_GTEST=OFF
cmake --build build
ctest --test-dir build
ctest --verbose --test-dir build
- name: test with CMake (-DSIMPLEINI_USE_SYSTEM_GTEST=ON)
run: |
cmake . -B build-system-gtest -DSIMPLEINI_USE_SYSTEM_GTEST=ON
cmake --build build-system-gtest
ctest --test-dir build-system-gtest
ctest --verbose --test-dir build-system-gtest
MacOS:
runs-on: macos-latest
Expand All @@ -53,9 +53,9 @@ jobs:
run: |
cmake . -B build -DSIMPLEINI_USE_SYSTEM_GTEST=OFF
cmake --build build
ctest --test-dir build
ctest --verbose --test-dir build
- name: test with CMake (-DSIMPLEINI_USE_SYSTEM_GTEST=ON)
run: |
cmake . -B build-system-gtest -DSIMPLEINI_USE_SYSTEM_GTEST=ON
cmake --build build-system-gtest
ctest --test-dir build-system-gtest
ctest --verbose --test-dir build-system-gtest

0 comments on commit eff1b22

Please sign in to comment.