From 911585fbcdd9e47ef119289843201047bc36bbb0 Mon Sep 17 00:00:00 2001
From: Timm Fitschen <t.fitschen@indiscale.com>
Date: Thu, 20 May 2021 23:13:16 +0200
Subject: [PATCH] WIP: pipeline

---
 .gitlab-ci.yml       | 3 +--
 include/connection.h | 3 ++-
 test/CMakeLists.txt  | 1 +
 3 files changed, 4 insertions(+), 3 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index a413511..8e9716b 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -62,8 +62,7 @@ test:
     - mkdir build
     - cd build
     - cmake -DCMAKE_BUILD_TYPE=Debug ..
-    - cmake --build .
-    - ctest
+    - cmake --build . --target unit_test_coverage
 
 # Build the sphinx documentation and make it ready for deployment by Gitlab Pages
 # Special job for serving a static website. See https://docs.gitlab.com/ee/ci/yaml/README.html#pages
diff --git a/include/connection.h b/include/connection.h
index 8d11db6..e32dfcf 100644
--- a/include/connection.h
+++ b/include/connection.h
@@ -8,13 +8,14 @@
  */
 #include <string>
 
+namespace caosdb {
+
 /**
  * @brief Configure the connection.
  * @param host Host name or ip address of the CaosDB server.
  * @param port Port of the CaosDB server.
  * @return 0 if everything is ok.
  */
-namespace caosdb {
 auto configure_connection(const std::string &host, int port) -> int;
 } // namespace caosdb
 #endif
diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt
index 31c3d5a..7790f3b 100644
--- a/test/CMakeLists.txt
+++ b/test/CMakeLists.txt
@@ -10,6 +10,7 @@ include(GoogleTest)
 set_target_properties(gtest PROPERTIES CXX_CLANG_TIDY "" CXX_INCLUDE_WHAT_YOU_USE "")
 set_target_properties(gtest_main PROPERTIES CXX_CLANG_TIDY "" CXX_INCLUDE_WHAT_YOU_USE "")
 set_target_properties(gmock PROPERTIES CXX_CLANG_TIDY "" CXX_INCLUDE_WHAT_YOU_USE "")
+set_target_properties(gmock_main PROPERTIES CXX_CLANG_TIDY "" CXX_INCLUDE_WHAT_YOU_USE "")
 
 list(LENGTH test_cases len_test_cases)
 math(EXPR len_test_cases "${len_test_cases} - 1")
-- 
GitLab