2018-07-20 12:20:47 +00:00
|
|
|
---
|
|
|
|
- hosts: localhost
|
|
|
|
roles:
|
|
|
|
- role: standard-test-basic
|
|
|
|
tags:
|
|
|
|
- classic
|
|
|
|
repositories:
|
|
|
|
- repo: "https://src.fedoraproject.org/tests/python.git"
|
|
|
|
dest: "python"
|
2020-03-06 10:43:45 +00:00
|
|
|
- repo: "https://src.fedoraproject.org/rpms/pyproject-rpm-macros.git"
|
|
|
|
dest: "pyproject-rpm-macros"
|
2018-07-20 12:20:47 +00:00
|
|
|
tests:
|
2021-05-24 22:51:00 +00:00
|
|
|
- smoke35_optional:
|
2018-07-20 12:20:47 +00:00
|
|
|
dir: python/smoke
|
2021-05-24 22:51:00 +00:00
|
|
|
run: VERSION=3.5 INSTALL_OR_SKIP=true ./venv.sh
|
2018-07-20 12:20:47 +00:00
|
|
|
- smoke36:
|
|
|
|
dir: python/smoke
|
|
|
|
run: VERSION=3.6 ./venv.sh
|
2019-02-26 09:14:52 +00:00
|
|
|
- smoke38:
|
|
|
|
dir: python/smoke
|
|
|
|
run: VERSION=3.8 ./venv.sh
|
2020-02-26 18:52:26 +00:00
|
|
|
- smoke39:
|
|
|
|
dir: python/smoke
|
|
|
|
run: VERSION=3.9 ./venv.sh
|
2020-12-30 09:12:51 +00:00
|
|
|
- smoke310:
|
|
|
|
dir: python/smoke
|
|
|
|
run: VERSION=3.10 ./venv.sh
|
2022-06-27 22:52:53 +00:00
|
|
|
- smoke311:
|
|
|
|
dir: python/smoke
|
|
|
|
run: VERSION=3.11 ./venv.sh
|
2024-01-09 09:11:45 +00:00
|
|
|
- smoke312:
|
|
|
|
dir: python/smoke
|
|
|
|
run: VERSION=3.12 ./venv.sh
|
2018-07-20 12:20:47 +00:00
|
|
|
- smoke27:
|
|
|
|
dir: python/smoke
|
|
|
|
run: VERSION=2.7 METHOD=virtualenv ./venv.sh
|
2021-05-24 22:51:00 +00:00
|
|
|
- smoke35_virtualenv_optional:
|
2018-07-20 12:20:47 +00:00
|
|
|
dir: python/smoke
|
2021-05-24 22:51:00 +00:00
|
|
|
run: VERSION=3.5 METHOD=virtualenv INSTALL_OR_SKIP=true ./venv.sh
|
2018-07-20 12:20:47 +00:00
|
|
|
- smoke36_virtualenv:
|
|
|
|
dir: python/smoke
|
|
|
|
run: VERSION=3.6 METHOD=virtualenv ./venv.sh
|
2019-02-26 09:14:52 +00:00
|
|
|
- smoke38_virtualenv:
|
|
|
|
dir: python/smoke
|
|
|
|
run: VERSION=3.8 METHOD=virtualenv ./venv.sh
|
2020-02-26 18:52:26 +00:00
|
|
|
- smoke39_virtualenv:
|
|
|
|
dir: python/smoke
|
|
|
|
run: VERSION=3.9 METHOD=virtualenv ./venv.sh
|
2020-12-30 09:12:51 +00:00
|
|
|
- smoke310_virtualenv:
|
|
|
|
dir: python/smoke
|
|
|
|
run: VERSION=3.10 METHOD=virtualenv ./venv.sh
|
2022-06-27 22:52:53 +00:00
|
|
|
- smoke311_virtualenv:
|
|
|
|
dir: python/smoke
|
|
|
|
run: VERSION=3.11 METHOD=virtualenv ./venv.sh
|
2024-01-09 09:11:45 +00:00
|
|
|
- smoke312_virtualenv:
|
|
|
|
dir: python/smoke
|
|
|
|
run: VERSION=3.12 METHOD=virtualenv ./venv.sh
|
2020-03-06 10:43:45 +00:00
|
|
|
- pyproject_pytest:
|
|
|
|
dir: pyproject-rpm-macros/tests
|
|
|
|
run: ./mocktest.sh python-pytest
|
|
|
|
- pyproject_pluggy:
|
|
|
|
dir: pyproject-rpm-macros/tests
|
|
|
|
run: ./mocktest.sh python-pluggy
|
2018-07-20 12:20:47 +00:00
|
|
|
required_packages:
|
|
|
|
- gcc
|
2019-03-01 10:12:16 +00:00
|
|
|
- virtualenv
|
2020-12-30 09:12:51 +00:00
|
|
|
- python2.7
|
|
|
|
- python3.6
|
|
|
|
- python3.8
|
|
|
|
- python3.9
|
2022-06-27 22:52:53 +00:00
|
|
|
- python3.10-devel
|
|
|
|
- python3.11-devel
|
2024-01-09 09:11:45 +00:00
|
|
|
- python3.12-devel
|
2018-07-20 12:20:47 +00:00
|
|
|
- python3-devel
|
|
|
|
- python3-tox
|
2020-03-06 10:43:45 +00:00
|
|
|
- mock
|
|
|
|
- rpmdevtools
|
|
|
|
- rpm-build
|