From 7afff33d01514f8aa97ff09b0f69859fc78572e2 Mon Sep 17 00:00:00 2001 From: sabudilovskiy Date: Fri, 24 Mar 2023 11:48:56 +0300 Subject: [PATCH] fix CI 4 --- CMakeLists.txt | 2 +- tests/CMakeLists.txt | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index e7b34435..7dad5d34 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,5 +1,5 @@ cmake_minimum_required(VERSION 3.12) -project(Timetable-VSU-backend CXX) +project(service_template CXX) include(third_party/userver/cmake/SetupEnvironment.cmake) include(GNUInstallDirs) diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index ddefe49c..3766cacf 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -8,12 +8,12 @@ else() endif() userver_testsuite_add( - SERVICE_TARGET service_template + SERVICE_TARGET Timetable-VSU-backend REQUIREMENTS ${CMAKE_CURRENT_SOURCE_DIR}/requirements.txt WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} PYTEST_ARGS --service-config=${CMAKE_SOURCE_DIR}/configs/static_config.yaml - --service-binary=${CMAKE_BINARY_DIR}/service_template + --service-binary=${CMAKE_BINARY_DIR}/Timetable-VSU-backend --config-fallback=${CMAKE_SOURCE_DIR}/configs/dynamic_config_fallback.json ${PYTEST_ARGS_CONFIG_VARS} )