2020-04-28 17:28:31 +00:00
|
|
|
---
|
|
|
|
- hosts: localhost
|
|
|
|
tags:
|
|
|
|
- classic
|
|
|
|
tasks:
|
|
|
|
- dnf:
|
|
|
|
name: "*"
|
|
|
|
state: latest
|
|
|
|
|
|
|
|
- hosts: localhost
|
|
|
|
roles:
|
|
|
|
- role: standard-test-basic
|
|
|
|
tags:
|
|
|
|
- classic
|
|
|
|
tests:
|
|
|
|
- pytest:
|
|
|
|
dir: .
|
2021-10-18 14:33:04 +00:00
|
|
|
run: PYTHONPATH=/usr/lib/rpm/redhat pytest -v
|
2020-08-31 11:44:41 +00:00
|
|
|
- manual_byte_compilation:
|
|
|
|
dir: .
|
|
|
|
run: rpmbuild -ba pythontest.spec
|
2020-04-28 17:28:31 +00:00
|
|
|
required_packages:
|
|
|
|
- rpm-build
|
|
|
|
- python-rpm-macros
|
2020-05-18 16:58:39 +00:00
|
|
|
- python3-rpm-macros
|
2020-09-16 15:32:10 +00:00
|
|
|
- python3-devel
|
2020-04-28 17:28:31 +00:00
|
|
|
- python3-pytest
|
2021-04-07 14:48:04 +00:00
|
|
|
- python3.6
|
2020-04-28 17:28:31 +00:00
|
|
|
|