Merge remote-tracking branch 'upstream' into feature/ai_examples

This commit is contained in:
xross
2022-08-08 16:39:19 +01:00
41 changed files with 712 additions and 189 deletions

14
Jenkinsfile vendored
View File

@@ -27,15 +27,21 @@ pipeline {
xcoreLibraryChecks("${REPO}")
}
}
stage('XS2 Tests') {
stage('Testing') {
failFast true
parallel {
stage('Legacy tests') {
stage('Tests') {
steps {
runXmostest("${REPO}", 'legacy_tests')
dir("${REPO}/tests"){
viewEnv(){
withVenv{
runPytest('--numprocesses=4')
}
}
}
}
}
stage('Unit tests') {
stage('Unity tests') {
steps {
dir("${REPO}") {
dir('tests') {