python3-tox on f25

This commit is contained in:
Kevin Fenzi 2017-02-16 20:27:53 +00:00
parent 0ef1d329c7
commit a53814665b
2 changed files with 6 additions and 11 deletions

View file

@ -245,17 +245,12 @@ el7_only:
- python-pygit2 # Required by pagure - python-pygit2 # Required by pagure
- python-pygments-markdown-lexer # Required by fedora-hubs (ticket #5425) - python-pygments-markdown-lexer # Required by fedora-hubs (ticket #5425)
# Packages only available in f23+
f23_only:
- mod_auth_openidc
- python2-solv # For modulemd-resolver. (ticket #5349)
- python3-solv # For modulemd-resolver. (ticket #5349)
- python-requests-kerberos
- python-jinja2
# Packages only available/needed in f24+ # Packages only available/needed in f24+
f24_only: f24_only:
- python2-systemd - python2-systemd
- python2-requests-kerberos - python2-requests-kerberos
- python2-jinja2 - python2-jinja2
- devscripts-minimal # Required by FedoraReview - devscripts-minimal # Required by FedoraReview
f25_only:
- python3-tox

View file

@ -43,10 +43,10 @@
- jenkins/slave - jenkins/slave
- packages - packages
- name: install f23 specific slave packages - name: install f25 specific slave packages
dnf: name={{ item }} state=installed dnf: name={{ item }} state=installed
with_items: "{{ f23_only }}" with_items: "{{ f25_only }}"
when: ansible_distribution_major_version|int == 23 when: ansible_distribution_major_version|int == 25
tags: tags:
- jenkins - jenkins
- jenkins/slave - jenkins/slave