File tree 3 files changed +11
-0
lines changed
3 files changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,12 @@ include(GNUInstallDirs)
6
6
7
7
set (URANIUM_SCRIPTS_DIR "${CMAKE_SOURCE_DIR} /../uranium/scripts" CACHE DIRECTORY "The location of the scripts directory of the Uranium repository" )
8
8
9
+ # Tests
10
+ # Note that we use exit 0 here to not mark the build as a failure on test failure
11
+ add_custom_target (tests)
12
+ add_custom_command (TARGET tests POST_BUILD COMMAND "PYTHONPATH=${CMAKE_SOURCE_DIR} " ${PYTHON_EXECUTABLE} -m pytest -r a --junitxml=${CMAKE_BINARY_DIR} /junit.xml ${CMAKE_SOURCE_DIR} || exit 0)
13
+
14
+
9
15
set (CURA_VERSION "master" CACHE STRING "Version name of Cura" )
10
16
configure_file (cura/CuraVersion.py.in CuraVersion.py @ONLY)
11
17
Original file line number Diff line number Diff line change
1
+ [pytest]
2
+ testpaths = tests
3
+ python_files = Test*.py
4
+ python_classes = Test
Original file line number Diff line number Diff line change
1
+ #Todo: Write tests
You can’t perform that action at this time.
0 commit comments