We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c0d876f commit bb0a82bCopy full SHA for bb0a82b
.github/workflows/codecov.yml
@@ -49,6 +49,7 @@ jobs:
49
git submodule update --init libs/predef
50
git submodule update --init libs/static_assert
51
git submodule update --init libs/test
52
+ git submodule update --init libs/random
53
./bootstrap.sh
54
./b2 headers
55
- name: gcc-gcov-native
test/tidy/make_tidy_02_files.gmk
@@ -6,3 +6,9 @@
6
# -----------------------------------------------------------------------------
7
8
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