diff --git a/Jenkinsfile b/Jenkinsfile index 6070293e3..7373764c0 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -36,11 +36,6 @@ pipeline{ sh "scripts/dev_cli.sh tests --cargo" } } - stage ('Run unit tests') { - steps { - sh "scripts/dev_cli.sh tests --unit" - } - } stage ('Run OpenAPI tests') { steps { sh "scripts/run_openapi_tests.sh" @@ -59,6 +54,11 @@ pipeline{ checkout scm } } + stage ('Run unit tests') { + steps { + sh "scripts/dev_cli.sh tests --unit" + } + } stage ('Run integration tests') { steps { sh "scripts/dev_cli.sh tests --integration"