76209d7bf3
It is not available on RHEL 9, where we would like to be able to run the tests. See https://bugzilla.redhat.com/show_bug.cgi?id=1984407
30 lines
514 B
YAML
30 lines
514 B
YAML
---
|
|
- hosts: localhost
|
|
tags:
|
|
- classic
|
|
tasks:
|
|
- dnf:
|
|
name: "*"
|
|
state: latest
|
|
|
|
- hosts: localhost
|
|
roles:
|
|
- role: standard-test-basic
|
|
tags:
|
|
- classic
|
|
tests:
|
|
- pytest:
|
|
dir: .
|
|
run: ALTERNATE_PYTHON_VERSION=3.6 pytest -v
|
|
- manual_byte_compilation:
|
|
dir: .
|
|
run: rpmbuild -ba pythontest.spec
|
|
required_packages:
|
|
- rpm-build
|
|
- python-rpm-macros
|
|
- python3-rpm-macros
|
|
- python3-devel
|
|
- python3-pytest
|
|
- python3.6
|
|
|