mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-08-14 03:46:05 +08:00
Move shortcut keys test to CMake
So that when you run tests locally, you also test this one.
This commit is contained in:
parent
05c2349411
commit
4e54f13145
14
Jenkinsfile
vendored
14
Jenkinsfile
vendored
@ -12,20 +12,6 @@ parallel_nodes(['linux && cura', 'windows && cura']) {
|
|||||||
|
|
||||||
// If any error occurs during building, we want to catch it and continue with the "finale" stage.
|
// If any error occurs during building, we want to catch it and continue with the "finale" stage.
|
||||||
catchError {
|
catchError {
|
||||||
stage('Pre Checks') {
|
|
||||||
if (isUnix()) {
|
|
||||||
// Check shortcut keys
|
|
||||||
try {
|
|
||||||
sh """
|
|
||||||
echo 'Check for duplicate shortcut keys in all translation files.'
|
|
||||||
${env.CURA_ENVIRONMENT_PATH}/master/bin/python3 scripts/check_shortcut_keys.py
|
|
||||||
"""
|
|
||||||
} catch(e) {
|
|
||||||
currentBuild.result = "UNSTABLE"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Building and testing should happen in a subdirectory.
|
// Building and testing should happen in a subdirectory.
|
||||||
dir('build') {
|
dir('build') {
|
||||||
// Perform the "build". Since Uranium is Python code, this basically only ensures CMake is setup.
|
// Perform the "build". Since Uranium is Python code, this basically only ensures CMake is setup.
|
||||||
|
@ -57,5 +57,13 @@ endforeach()
|
|||||||
#Add code style test.
|
#Add code style test.
|
||||||
add_test(
|
add_test(
|
||||||
NAME "code-style"
|
NAME "code-style"
|
||||||
COMMAND ${PYTHON_EXECUTABLE} run_mypy.py WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}
|
COMMAND ${PYTHON_EXECUTABLE} run_mypy.py
|
||||||
|
WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}
|
||||||
|
)
|
||||||
|
|
||||||
|
#Add test for whether the shortcut alt-keys are unique in every translation.
|
||||||
|
add_test(
|
||||||
|
NAME "shortcut-keys"
|
||||||
|
COMMAND ${PYTHON_EXECUTABLE} scripts/check_shortcut_keys.py
|
||||||
|
WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}
|
||||||
)
|
)
|
Loading…
x
Reference in New Issue
Block a user