mirror of
https://github.com/freeipa/ansible-freeipa.git
synced 2026-06-10 02:35:54 +00:00
The usual scenario for PR checks is to execute only a few tests, and searching for the results in several jobs makes it harder to find issues. By using a single job run the tests would take some more time to complete, although not much, as only a small subset is executed, and test verification would be easier and less error prone.
28 lines
677 B
YAML
28 lines
677 B
YAML
---
|
|
parameters:
|
|
- name: scenario
|
|
type: string
|
|
default: fedora-latest
|
|
- name: build_number
|
|
type: string
|
|
- name: ansible_version
|
|
type: string
|
|
default: ""
|
|
|
|
jobs:
|
|
- template: playbook_fast.yml
|
|
parameters:
|
|
group_number: 1
|
|
number_of_groups: 1
|
|
build_number: ${{ parameters.build_number }}
|
|
scenario: ${{ parameters.scenario }}
|
|
ansible_version: ${{ parameters.ansible_version }}
|
|
python_version: '< 3.12'
|
|
|
|
# - template: pytest_tests.yml
|
|
# parameters:
|
|
# build_number: ${{ parameters.build_number }}
|
|
# scenario: ${{ parameters.scenario }}
|
|
# ansible_version: ${{ parameters.ansible_version }}
|
|
# python_version: '< 3.12'
|