diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2023-05-07 21:02:53 +0200 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2023-05-07 21:02:53 +0200 |
commit | 8bf3435c73612758c16f237c35bbbce3ff65b66a (patch) | |
tree | caa736a8dce85bdff04a30be97882e7933795020 /test | |
parent | fix docker-compose.yml to work with older versions (diff) | |
download | cimple-8bf3435c73612758c16f237c35bbbce3ff65b66a.tar.gz cimple-8bf3435c73612758c16f237c35bbbce3ff65b66a.zip |
test: rename CMake tests
Diffstat (limited to 'test')
-rw-r--r-- | test/CMakeLists.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index 66b79e9..6195eec 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -7,11 +7,11 @@ set(args --client-binary "$<TARGET_FILE:client>" --project-version "${PROJECT_VERSION}") -add_test(NAME integration_tests +add_test(NAME python_tests COMMAND Python3::Interpreter -m pytest ${args} WORKING_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}") -add_test(NAME integration_tests_with_valgrind +add_test(NAME python_tests_valgrind COMMAND Python3::Interpreter -m pytest ${args} --valgrind-binary "${CMAKE_CURRENT_SOURCE_DIR}/../src/valgrind.sh" WORKING_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}") |