Skip to content

Commit

Permalink
[INFRA] Change default of SEQAN3_VERBOSE_TESTS to OFF
Browse files Browse the repository at this point in the history
  • Loading branch information
eseiler committed Jul 17, 2024
1 parent e2d5567 commit 4ce9e00
Show file tree
Hide file tree
Showing 10 changed files with 4 additions and 13 deletions.
1 change: 0 additions & 1 deletion .github/workflows/ci_cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,6 @@ jobs:
run: |
mkdir build && cd build
cmake ../test/${{ matrix.build }} -DCMAKE_BUILD_TYPE=Debug \
-DSEQAN3_VERBOSE_TESTS=OFF \
-DCMAKE_DEPENDS_USE_COMPILER="${{ matrix.cmake_depends_use_compiler }}" \
-DSEQAN3_USE_INCLUDE_DEPENDENCIES="${{ matrix.use_include_dependencies }}"
case "${{ matrix.build }}" in
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/ci_coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,6 @@ jobs:
run: |
mkdir build && cd build
cmake ../test/coverage -DCMAKE_BUILD_TYPE=Coverage \
-DSEQAN3_VERBOSE_TESTS=OFF \
-DSEQAN3_COVERAGE_PARALLEL_LEVEL=$(nproc)
make gtest_build
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/ci_linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,7 @@ jobs:
$CXX --version || true
mkdir build && cd build
cmake ../test/unit -DCMAKE_BUILD_TYPE=Release \
-DCMAKE_CXX_FLAGS="${{ matrix.cxx_flags }}" \
-DSEQAN3_VERBOSE_TESTS=OFF
-DCMAKE_CXX_FLAGS="${{ matrix.cxx_flags }}"
make gtest_build
- name: Build tests
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/ci_macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,7 @@ jobs:
- name: Configure tests
run: |
mkdir build && cd build
cmake ../test/unit -DCMAKE_BUILD_TYPE=Release \
-DSEQAN3_VERBOSE_TESTS=OFF
cmake ../test/unit -DCMAKE_BUILD_TYPE=Release
make gtest_build
- name: Build tests
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/ci_misc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,6 @@ jobs:
mkdir build && cd build
cmake ../test/${{ matrix.build }} -DCMAKE_BUILD_TYPE=Release \
-DCMAKE_CXX_FLAGS="${{ matrix.cxx_flags }}" \
-DSEQAN3_VERBOSE_TESTS=OFF \
-DSEQAN3_BENCHMARK_MIN_TIME=0.01
case "${{ matrix.build }}" in
snippet) make gtest_build;;
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/cron_avx2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,6 @@ jobs:
mkdir seqan3-build
cd seqan3-build
cmake ../seqan3/test/${{ matrix.build }} -DCMAKE_BUILD_TYPE=Release \
-DSEQAN3_VERBOSE_TESTS=OFF \
-DSEQAN3_BENCHMARK_MIN_TIME=0.01 \
-DCMAKE_CXX_FLAGS="-mavx2"
case "${{ matrix.build }}" in
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/cron_latest_libraries.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,6 @@ jobs:
cd seqan3-build
cmake ../seqan3/test/${{ matrix.build }} -DCMAKE_BUILD_TYPE=Release \
-DCMAKE_CXX_FLAGS="${{ matrix.cxx_flags }}" \
-DSEQAN3_VERBOSE_TESTS=OFF \
-DSEQAN3_BENCHMARK_MIN_TIME=0.01
case "${{ matrix.build }}" in
unit) make -j2 gtest_build;;
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/ram_usage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,7 @@ jobs:
mkdir seqan3-build
cd seqan3-build
cmake ../seqan3/test/unit -DCMAKE_BUILD_TYPE=Release \
-DCMAKE_CXX_FLAGS="${{ github.event.inputs.cxx_flags }}" \
-DSEQAN3_VERBOSE_TESTS=OFF
-DCMAKE_CXX_FLAGS="${{ github.event.inputs.cxx_flags }}"
- name: Update gcc wrapper
run: sed -i "s/DO_TIME=0/DO_TIME=1/" g++.sh
Expand Down
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,6 @@ before_script:
- |
cmake ../seqan3/test/${BUILD} -DCMAKE_BUILD_TYPE=Release \
-DCMAKE_CXX_FLAGS="-Wno-psabi" \
-DSEQAN3_VERBOSE_TESTS=OFF \
-DSEQAN3_BENCHMARK_MIN_TIME=0.01
- |
case "${BUILD}" in
Expand Down
2 changes: 1 addition & 1 deletion test/unit/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ include (diagnostics/list_missing_unit_tests)
include (diagnostics/list_unused_unit_tests)
include (include_dependencies/add_include_dependencies)

option (SEQAN3_VERBOSE_TESTS "Run each test case individually" ON)
option (SEQAN3_VERBOSE_TESTS "Run each test case individually" OFF)
option (SEQAN3_USE_INCLUDE_DEPENDENCIES
"Build tests in an hierarchical order (by an include graph, i.e. tests with less dependencies are build first)"
OFF)
Expand Down

0 comments on commit 4ce9e00

Please sign in to comment.