2024-06-26 10:12:30 +00:00
|
|
|
---
|
|
|
|
- hosts: localhost
|
|
|
|
tags:
|
|
|
|
- classic
|
|
|
|
pre_tasks:
|
|
|
|
- name: Enable CRB for python3-pytest on 1minutetip
|
|
|
|
ini_file:
|
|
|
|
path: /etc/yum.repos.d/rhel.repo
|
|
|
|
section: rhel-CRB
|
|
|
|
option: enabled
|
|
|
|
value: "1"
|
|
|
|
create: no
|
|
|
|
ignore_errors: yes
|
|
|
|
roles:
|
|
|
|
- role: standard-test-source
|
2024-07-05 12:12:40 +00:00
|
|
|
required_packages:
|
|
|
|
- git
|
2024-06-26 10:12:30 +00:00
|
|
|
- role: standard-test-basic
|
|
|
|
required_packages:
|
|
|
|
- python3-kdcproxy
|
|
|
|
- python3-pytest
|
|
|
|
tests:
|
|
|
|
- unittests:
|
|
|
|
dir: "source"
|
|
|
|
run: >-
|
|
|
|
rm -rf kdcproxy* &&
|
|
|
|
python3 -m pytest
|