Skip to content

Commit bb0a82b

Browse files
committed
Exclude compile fail tests and add random to dependency list
1 parent c0d876f commit bb0a82b

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

.github/workflows/codecov.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ jobs:
4949
git submodule update --init libs/predef
5050
git submodule update --init libs/static_assert
5151
git submodule update --init libs/test
52+
git submodule update --init libs/random
5253
./bootstrap.sh
5354
./b2 headers
5455
- name: gcc-gcov-native

test/tidy/make_tidy_02_files.gmk

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,9 @@
66
# -----------------------------------------------------------------------------
77

88
FILES_PRJ = $(basename $(wildcard $(PATH_SRC)/*.cpp))
9+
10+
FILES_EXCLUDE := $(basename $(wildcard $(PATH_SRC)/test_illegal_*))
11+
12+
FILES_EXCLUDE := $(basename $(FILES_EXCLUDE))
13+
14+
FILES_PRJ := $(filter-out $(FILES_EXCLUDE),$(FILES_PRJ))

0 commit comments

Comments
 (0)