26 lines
482 B
YAML
26 lines
482 B
YAML
---
|
|
# Run pykickstart's test suite
|
|
#
|
|
# playbook based on pyparted.
|
|
#
|
|
- hosts: localhost
|
|
roles:
|
|
# Fetch package source
|
|
- role: standard-test-source
|
|
tags:
|
|
- classic
|
|
|
|
- role: standard-test-basic
|
|
tags:
|
|
- classic
|
|
required_packages:
|
|
- make
|
|
- git
|
|
- python3-coverage
|
|
- python3-devel
|
|
- redhat-rpm-config
|
|
tests:
|
|
- simple:
|
|
dir: scripts/
|
|
run: ./run_tests.sh ../source
|