Skip to content

Commit eb64b66

Browse files
authored
Merge pull request #329 from ClickHouse/Enmk-fix-macos-flaky-tests
Less flaky tests when executing against remote server (not docker)
2 parents 4f929e9 + f84a483 commit eb64b66

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/macos.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,5 +67,5 @@ jobs:
6767
# It is impossible to start CH server in docker on macOS due to github actions limitations,
6868
# so we use remote server to execute tests, some do not allow some features for anonymoust/free users:
6969
# - system.query_log used by 'Client/ClientCase.Query_ID'
70-
GTEST_FILTER: "-Client/ClientCase.Query_ID*"
70+
GTEST_FILTER: "-Client/ClientCase.Query_ID*:Client/ClientCase.TracingContext/*"
7171
run: ./clickhouse-cpp-ut ${GTEST_FILTER}

.github/workflows/windows_mingw.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ jobs:
8585
# It is impossible to start CH server in docker on Windows due to github actions limitations,
8686
# so we use remote server to execute tests, some do not allow some features for anonymoust/free users:
8787
# - system.query_log used by 'Client/ClientCase.Query_ID'
88-
GTEST_FILTER: "-Client/ClientCase.Query_ID*"
88+
GTEST_FILTER: "-Client/ClientCase.Query_ID*:Client/ClientCase.TracingContext/*"
8989
run: ./build/ut/clickhouse-cpp-ut.exe ${GTEST_FILTER}
9090

9191
- name: Test (simple)

.github/workflows/windows_msvc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,6 @@ jobs:
6161
# It is impossible to start CH server in docker on Windows due to github actions limitations,
6262
# so we use remote server to execute tests, some do not allow some features for anonymoust/free users:
6363
# - system.query_log used by 'Client/ClientCase.Query_ID'
64-
GTEST_FILTER: "-Client/ClientCase.Query_ID*"
64+
GTEST_FILTER: "-Client/ClientCase.Query_ID*:Client/ClientCase.TracingContext/*"
6565
working-directory: ${{github.workspace}}/build/ut
6666
run: Release\clickhouse-cpp-ut.exe "${{env.GTEST_FILTER}}"

0 commit comments

Comments
 (0)