From 609e221160b14ffb394facb8c98ef9409418c182 Mon Sep 17 00:00:00 2001 From: Ramon Nou Date: Thu, 14 May 2020 09:15:37 +0000 Subject: [PATCH 1/2] Adding status test to the installation --- tests/integration/CMakeLists.txt | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/tests/integration/CMakeLists.txt b/tests/integration/CMakeLists.txt index d289ccfe4..a91a88673 100644 --- a/tests/integration/CMakeLists.txt +++ b/tests/integration/CMakeLists.txt @@ -49,6 +49,14 @@ if(GKFS_INSTALL_TESTS) PATTERN ".pytest_cache" EXCLUDE ) + install(DIRECTORY status + DESTINATION ${CMAKE_INSTALL_DATAROOTDIR}/gkfs/tests/integration + FILES_MATCHING + REGEX ".*\\.py" + PATTERN "__pycache__" EXCLUDE + PATTERN ".pytest_cache" EXCLUDE + + install(DIRECTORY shell DESTINATION ${CMAKE_INSTALL_DATAROOTDIR}/gkfs/tests/integration FILES_MATCHING -- GitLab From 4e0638fbdc154667f3ee663eab55ed6e73617582 Mon Sep 17 00:00:00 2001 From: Ramon Nou Date: Thu, 14 May 2020 09:41:54 +0000 Subject: [PATCH 2/2] Missing ) --- tests/integration/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration/CMakeLists.txt b/tests/integration/CMakeLists.txt index a91a88673..74645eef1 100644 --- a/tests/integration/CMakeLists.txt +++ b/tests/integration/CMakeLists.txt @@ -55,7 +55,7 @@ if(GKFS_INSTALL_TESTS) REGEX ".*\\.py" PATTERN "__pycache__" EXCLUDE PATTERN ".pytest_cache" EXCLUDE - + ) install(DIRECTORY shell DESTINATION ${CMAKE_INSTALL_DATAROOTDIR}/gkfs/tests/integration -- GitLab