Skip to content

Commit

Permalink
Change order of tests
Browse files Browse the repository at this point in the history
  • Loading branch information
xluciano committed Sep 26, 2024
1 parent 26b19e0 commit 138c379
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,20 @@ pipeline {
// }
// }
//}
stage('Run RTOS Drivers USB test') {
steps {
withTools(params.TOOLS_VERSION) {
withVenv {
script {
withXTAG(["$RTOS_TEST_RIG_TARGET"]) { adapterIDs ->
sh "bash -l test/rtos_drivers/usb/check_usb.sh " + adapterIDs[0]
}
sh "pytest test/rtos_drivers/usb"
}
}
}
}
}
// TODO: Disabled till http://bugzilla.xmos.local/show_bug.cgi?id=18895 is fixed.
// This problem occurred in the USB tests if the HIL tests were run first.
// Tools 15.3.1 should include the fix.
Expand Down Expand Up @@ -174,20 +188,6 @@ pipeline {
}
}
}
stage('Run RTOS Drivers USB test') {
steps {
withTools(params.TOOLS_VERSION) {
withVenv {
script {
withXTAG(["$RTOS_TEST_RIG_TARGET"]) { adapterIDs ->
sh "bash -l test/rtos_drivers/usb/check_usb.sh " + adapterIDs[0]
}
sh "pytest test/rtos_drivers/usb"
}
}
}
}
}
}
post {
cleanup {
Expand Down

0 comments on commit 138c379

Please sign in to comment.