mirror of
https://github.com/SAP/jenkins-library.git
synced 2024-12-16 11:09:33 +02:00
0e7ef41fab
* generate docs for newmanExecute step * fix typo
35 lines
506 B
Markdown
35 lines
506 B
Markdown
# ${docGenStepName}
|
|
|
|
## ${docGenDescription}
|
|
|
|
## Prerequisites
|
|
|
|
* prepared Postman with a test collection
|
|
|
|
## ${docGenParameters}
|
|
|
|
## ${docGenConfiguration}
|
|
|
|
## Side effects
|
|
|
|
Step uses `dockerExecute` inside.
|
|
|
|
## 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']
|
|
```
|