[DEV] sort tests by tags

This commit is contained in:
NADAL Jean-Baptiste
2024-02-13 18:40:26 +01:00
parent 00b7b49fd1
commit c3d3a85f08
2 changed files with 15 additions and 2 deletions

15
.vscode/settings.json vendored
View File

@@ -79,5 +79,18 @@
"typeinfo": "cpp", "typeinfo": "cpp",
"variant": "cpp" "variant": "cpp"
}, },
"editor.formatOnSave": true "editor.formatOnSave": true,
"testMate.cpp.test.advancedExecutables": [
{
"pattern": "{build,Build,BUILD,out,Out,OUT}/**/*{test,Test,TEST}*",
"catch2": {
"testGrouping": {
"groupByExecutable": {
"label": "${filename}",
"groupByTags": true
}
}
}
}
]
} }

View File

@@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.14)
project(raytracing_challenge project(raytracing_challenge
VERSION 0.1 VERSION 0.1
DESCRIPTION "Raytracing Challenge in c++" DESCRIPTION "Raytracing Challenge in C++"
) )
add_subdirectory(raytracing) add_subdirectory(raytracing)