41 lines
1.2 KiB
YAML
41 lines
1.2 KiB
YAML
---
|
||
- job:
|
||
name: qa-web-bdd-tests
|
||
description: "WEB BDD/Cucumber тесты (homework_1, branch homework_2)."
|
||
project-type: pipeline
|
||
concurrent: true
|
||
sandbox: true
|
||
properties:
|
||
- build-discarder:
|
||
num-to-keep: 50
|
||
parameters:
|
||
- string:
|
||
name: BDD_REPO_URL
|
||
default: https://git.kovbasa.ru/otus-autotests/homework_1.git
|
||
description: "Git URL репозитория с BDD/Cucumber web тестами"
|
||
- string:
|
||
name: BDD_REPO_REF
|
||
default: homework_2
|
||
description: "Git branch/tag/commit для checkout"
|
||
- string:
|
||
name: ALLURE_ADAPTER_VERSION
|
||
default: 2.29.1
|
||
description: "Версия allure-junit5 адаптера"
|
||
- choice:
|
||
name: BROWSER
|
||
choices:
|
||
- chrome
|
||
- firefox
|
||
- string:
|
||
name: BASE_URL
|
||
default: https://otus.ru
|
||
- string:
|
||
name: SELENOID_URL
|
||
default: http://host.docker.internal:4444/wd/hub
|
||
- choice:
|
||
name: HEADLESS
|
||
choices:
|
||
- "false"
|
||
- "true"
|
||
dsl: !include-raw-verbatim: ../scripts/qa-web-bdd-tests.groovy
|