更新 Jenkinsfile 执行全部的测试

This commit is contained in:
x54-729 2022-05-17 17:06:57 +00:00
parent 51a4439737
commit 46aede4925

4
Jenkinsfile vendored
View File

@ -26,7 +26,7 @@ pipeline {
}
}
steps {
sh 'pytest ./tests/core/drivers/torch_driver --durations=0 -m torch'
sh 'pytest ./tests/ --durations=0 -m torch'
}
}
stage('Test Torch-1.6') {
@ -37,7 +37,7 @@ pipeline {
}
}
steps {
sh 'pytest ./tests/core/drivers/torch_driver --durations=0 -m torch'
sh 'pytest ./tests/ --durations=0 -m torch'
}
}
stage('Test Paddle') {