Skip to content

Commit

Permalink
[Jenkins] Delete obsolete option in pytest command
Browse files Browse the repository at this point in the history
  • Loading branch information
auphelia committed Oct 24, 2023
1 parent 1093276 commit 6e86f9c
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions docker/jenkins/Jenkinsfile_CI
Original file line number Diff line number Diff line change
Expand Up @@ -14,31 +14,31 @@ node {
parallel firstBranch: {
stage('Brevitas export') {
dir("${env.WORKSPACE}") {
sh("bash run-docker.sh pytest --addopts -mbrevitas_export")
sh("bash run-docker.sh pytest -mbrevitas_export")
}
}
}, secondBranch: {
stage('Streamlining transformations') {
dir("${env.WORKSPACE}") {
sh("bash run-docker.sh pytest --addopts -mstreamline")
sh("bash run-docker.sh pytest -mstreamline")
}
}
}, thirdBranch: {
stage('Util functions') {
dir("${env.WORKSPACE}") {
sh("bash run-docker.sh pytest --addopts -mutil")
sh("bash run-docker.sh pytest -mutil")
}
}
}, fourthBranch: {
stage('General transformations') {
dir("${env.WORKSPACE}") {
sh("bash run-docker.sh pytest --addopts -mtransform")
sh("bash run-docker.sh pytest -mtransform")
}
}
}, fifthBranch: {
stage('Fpgadataflow transformations and simulations') {
dir("${env.WORKSPACE}") {
sh("bash run-docker.sh pytest --addopts -mfpgadataflow")
sh("bash run-docker.sh pytest -mfpgadataflow")
}
}
}
Expand Down

0 comments on commit 6e86f9c

Please sign in to comment.