Commit 7d698472 authored by Training Purpose's avatar Training Purpose

jenkins file

parent 11d06dfa
pipeline {
agent any
stages {
stage('Test') {
steps {
bat "mvn test -Dkarate.options=-t=@nazoor -Denv=QA1"
}
post {
// If Maven was able to run the tests, even if some of the test
// failed, record the test results and archive the jar file.
success { allure([
includeProperties: false,
jdk: '',
properties: [],
reportBuildPolicy: 'ALWAYS',
results: [[path: 'allure-results']]
])
}
}
}
}
}
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment