Blob Blame History Raw
---
- hosts: localhost
  ignore_errors: true
  tags:
    - classic
  tasks:
    - command: dnf upgrade -y
      register: dnfup
    - debug: var=dnfup
    - command: rpm -qa --qf "%{dbinstance} %{nevra} %{rsaheader:pgpsig}\n"
      register: rpmqa
    - debug: var=rpmqa
    - dnf:
        name: "*"
        state: latest

- hosts: localhost
  roles:
  - role: standard-test-basic
    tags:
    - classic
    repositories:
    - repo: "https://src.fedoraproject.org/rpms/pyproject-rpm-macros.git"
      dest: "pyproject-rpm-macros"
    tests:
    # regression test for https://bugzilla.redhat.com/show_bug.cgi?id=2078744
    - pyproject_rpm_macros:
        dir: pyproject-rpm-macros/tests
        run: ./mocktest.sh python-pluggy
    required_packages:
    - mock
    - rpmdevtools
    - rpm-build