Blob Blame History Raw
- hosts: localhost
  tags:
    - classic

  pre_tasks:
    - name: Generate list of tests in this PR
      shell: |
          git fetch https://src.fedoraproject.org/tests/selinux.git master:upstream-master
          git log --format= --stat --name-only upstream-master..HEAD | sed '/\//!d;s#\(.*\)/.*#\1#' | sort -u | xargs
      delegate_to: localhost
      register: tests_list

    - name: Set tests
      set_fact:
        tests: "{{ tests_list.stdout.split(' ') }}"

  roles:
  - role: standard-test-beakerlib