mirror of
https://github.com/SAP/jenkins-library.git
synced 2024-12-14 11:03:09 +02:00
37 lines
542 B
Markdown
37 lines
542 B
Markdown
# ${docGenStepName}
|
|
|
|
## ${docGenDescription}
|
|
|
|
## Prerequisites
|
|
|
|
* prepared Postman with a test collection
|
|
|
|
## ${docGenParameters}
|
|
|
|
## ${docGenConfiguration}
|
|
|
|
## Side effects
|
|
|
|
Step uses `dockerExecute` inside.
|
|
|
|
## ${docJenkinsPluginDependencies}
|
|
|
|
## Exceptions
|
|
|
|
none
|
|
|
|
## Example
|
|
|
|
Pipeline step:
|
|
|
|
```groovy
|
|
newmanExecute script: this
|
|
```
|
|
|
|
This step should be used in combination with `testsPublishResults`:
|
|
|
|
```groovy
|
|
newmanExecute script: this, failOnError: false
|
|
testsPublishResults script: this, junit: [pattern: '**/newman/TEST-*.xml']
|
|
```
|