Skip to content

Commit

Permalink
Extend new example in readme (#662)
Browse files Browse the repository at this point in the history
  • Loading branch information
ErikRehmTT committed Feb 29, 2024
1 parent ceb4942 commit 166d56d
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -577,10 +577,10 @@ node('windows') {
**With custom settings**
```groovy
node('windows') {
// Start tools, execute tests
// Start tools, execute tests, generate reports
...
// test.guide server instantiation using newATXServer step
// dynamic test.guide server instantiation using newATXServer step
def atx = newAtxServer atxName: 'test.guide', toolName: 'ecu.test',
config: atxConfig(
settings: [
Expand All @@ -591,7 +591,8 @@ node('windows') {
atxBooleanSetting(group: 'UPLOAD', name: 'uploadToServer', value: true),
],
customSettings: [
atxCustomTextSetting(name: 'customSetting', value: 'customValue')
atxCustomTextSetting(name: 'customSetting', value: 'customValue'),
atxCustomBooleanSetting(name: 'boolSetting', checked: true)
]
)
Expand Down

0 comments on commit 166d56d

Please sign in to comment.