Skip to content

Commit bad3aaa

Browse files
committed
chore: less verbose tests
1 parent 94f0031 commit bad3aaa

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/code-coverage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
run: cmake --build .
2727

2828
- working-directory: build/
29-
run: ctest -VV --output-on-failure
29+
run: ctest --output-on-failure
3030

3131
- working-directory: build/
3232
run: bash <(curl -s https://codecov.io/bash)

.github/workflows/linux.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,8 @@ jobs:
3939
# See https://cmake.org/cmake/help/latest/variable/CMAKE_BUILD_TYPE.html?highlight=cmake_build_type
4040
env:
4141
CXX_FLAGS: -fsanitize-address -fsanitize-undefined
42+
GTEST_BRIEF: 1
43+
GTEST_COLOR: yes
4244
run: |
4345
c++ --version
4446
cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{ matrix.build_type }} -G Ninja \
@@ -54,4 +56,4 @@ jobs:
5456
working-directory: ${{github.workspace}}/build
5557
# Execute tests defined by the CMake configuration.
5658
# See https://cmake.org/cmake/help/latest/manual/ctest.1.html for more detail
57-
run: ctest -VV -C ${{ matrix.build_type }}
59+
run: ctest --output-on-failure -C ${{ matrix.build_type }}

0 commit comments

Comments
 (0)