diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index 1a267aa8..215b2214 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -67,5 +67,5 @@ jobs: # It is impossible to start CH server in docker on macOS due to github actions limitations, # so we use remote server to execute tests, some do not allow some features for anonymoust/free users: # - system.query_log used by 'Client/ClientCase.Query_ID' - GTEST_FILTER: "-Client/ClientCase.Query_ID*" + GTEST_FILTER: "-Client/ClientCase.Query_ID*:Client/ClientCase.TracingContext/*" run: ./clickhouse-cpp-ut ${GTEST_FILTER} diff --git a/.github/workflows/windows_mingw.yml b/.github/workflows/windows_mingw.yml index d99c1ef7..6c6c3e9b 100644 --- a/.github/workflows/windows_mingw.yml +++ b/.github/workflows/windows_mingw.yml @@ -85,7 +85,7 @@ jobs: # It is impossible to start CH server in docker on Windows due to github actions limitations, # so we use remote server to execute tests, some do not allow some features for anonymoust/free users: # - system.query_log used by 'Client/ClientCase.Query_ID' - GTEST_FILTER: "-Client/ClientCase.Query_ID*" + GTEST_FILTER: "-Client/ClientCase.Query_ID*:Client/ClientCase.TracingContext/*" run: ./build/ut/clickhouse-cpp-ut.exe ${GTEST_FILTER} - name: Test (simple) diff --git a/.github/workflows/windows_msvc.yml b/.github/workflows/windows_msvc.yml index 149e3df4..760f5ab2 100644 --- a/.github/workflows/windows_msvc.yml +++ b/.github/workflows/windows_msvc.yml @@ -61,6 +61,6 @@ jobs: # It is impossible to start CH server in docker on Windows due to github actions limitations, # so we use remote server to execute tests, some do not allow some features for anonymoust/free users: # - system.query_log used by 'Client/ClientCase.Query_ID' - GTEST_FILTER: "-Client/ClientCase.Query_ID*" + GTEST_FILTER: "-Client/ClientCase.Query_ID*:Client/ClientCase.TracingContext/*" working-directory: ${{github.workspace}}/build/ut run: Release\clickhouse-cpp-ut.exe "${{env.GTEST_FILTER}}"