Skip to content

Commit 46ff3f4

Browse files
committed
Added unit test stub
1 parent ae0e051 commit 46ff3f4

File tree

3 files changed

+11
-0
lines changed

3 files changed

+11
-0
lines changed

CMakeLists.txt

+6
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@ include(GNUInstallDirs)
66

77
set(URANIUM_SCRIPTS_DIR "${CMAKE_SOURCE_DIR}/../uranium/scripts" CACHE DIRECTORY "The location of the scripts directory of the Uranium repository")
88

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+
915
set(CURA_VERSION "master" CACHE STRING "Version name of Cura")
1016
configure_file(cura/CuraVersion.py.in CuraVersion.py @ONLY)
1117

pytest.ini

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
[pytest]
2+
testpaths = tests
3+
python_files = Test*.py
4+
python_classes = Test

tests/TestMachineAction.py

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
#Todo: Write tests

0 commit comments

Comments
 (0)