python-rpm-generators/tests/tests.yml
Miro Hrončok 00b07b2e9c CI: Drop the unused requirement of fedpkg-minimal
tests/download_data_and_run_pytest.sh uses it only when run from other packages.
2024-08-20 11:22:20 +02:00

48 lines
862 B
YAML

---
- hosts: localhost
tags:
- classic
tasks:
- dnf:
name: "*"
state: latest
- hosts: localhost
tags:
- classic
pre_tasks:
- import_role:
name: standard-test-source
vars:
fetch_only: True
roles:
- role: standard-test-basic
tests:
- rpm_qa:
dir: .
run: rpm -qa | sort
- pythonabi:
dir: .
run: ./pythonabi.sh
- pythonname:
dir: .
run: ./pythonname.sh
- pythondist:
dir: .
run: ./pythondist.sh
- console_script:
dir: .
run: ./console_script.sh
- pytest:
dir: .
run: ./download_data_and_run_pytest.sh
required_packages:
- rpm-build
- rpmdevtools
- python3-devel
- python3-pip
- python3-pytest
- python3-pyyaml
- python3-setuptools
- python3-wheel