Fedora contributions by:
Bill Nottingham <notting@fedoraproject.org>
David Malcolm <dmalcolm@redhat.com>
Dennis Gilmore <dennis@ausil.us>
Haikel Guemar <hguemar@fedoraproject.org>
Ignacio Vazquez-Abrams <ivazquez@fedoraproject.org>
Jesse Keating <jkeating@fedoraproject.org>
Karolina Surma <ksurma@redhat.com>
Kevin Fenzi <kevin@scrye.com>
Konstantin Ryabitsev <icon@fedoraproject.org>
Lukáš Zachar <lzachar@redhat.com>
Lumír Balhar <lbalhar@redhat.com>
Matej Stuchlik <mstuchli@redhat.com>
Michal Cyprian <mcyprian@redhat.com>
Miro Hrončok <mhroncok@redhat.com>
Miroslav Suchý <msuchy@redhat.com>
Nils Philippsen <nils@redhat.com>
Orion Poplawski <orion@cora.nwra.com>
Petr Viktorin <pviktori@redhat.com>
Pierre-Yves Chibon <pingou@pingoured.fr>
Ralph Bean <rbean@redhat.com>
Randy Barlow <bowlofeggs@fedoraproject.org>
Robert Kuska <rkuska@redhat.com>
Slavek Kabrda <bkabrda@redhat.com>
Stratakis Charalampos <cstratak@redhat.com>
Thomas Spura <tomspur@fedoraproject.org>
Tomáš Hrnčiar <thrnciar@redhat.com>
Tomas Orsava <torsava@redhat.com>
Tomas Radej <tradej@redhat.com>
Toshio Kuratomi <toshio@fedoraproject.org>
Troy Dawson <tdawson@redhat.com>
Ville Skyttä <scop@fedoraproject.org>
88 lines
2.4 KiB
Plaintext
88 lines
2.4 KiB
Plaintext
execute:
|
|
how: tmt
|
|
|
|
discover:
|
|
- name: rpms_pyproject-rpm-macros
|
|
how: shell
|
|
url: https://src.fedoraproject.org/rpms/pyproject-rpm-macros.git
|
|
tests:
|
|
- name: pyproject_pytest
|
|
path: /tests
|
|
test: ./mocktest.sh python-pytest
|
|
- name: pyproject_pluggy
|
|
path: /tests
|
|
test: ./mocktest.sh python-pluggy
|
|
- name: same_repo
|
|
how: shell
|
|
dist-git-source: true
|
|
dist-git-download-only: true
|
|
tests:
|
|
- name: import_test
|
|
test: python3.14 -c "import setuptools"
|
|
- name: mock_bootstrap_build
|
|
# Needs cwd to contain downloaded sources, path to mocktes.sh depends on tmt tree structure
|
|
test: |
|
|
cd $TMT_SOURCE_DIR &&
|
|
$TMT_TREE/../discover/rpms_pyproject-rpm-macros/tests/tests/mocktest.sh python-setuptools --with bootstrap
|
|
- name: tests_python
|
|
how: shell
|
|
url: https://src.fedoraproject.org/tests/python.git
|
|
tests:
|
|
- name: smoke36
|
|
path: /smoke
|
|
test: VERSION=3.6 TOX=false ./venv.sh
|
|
- name: smoke39
|
|
path: /smoke
|
|
test: VERSION=3.9 ./venv.sh
|
|
- name: smoke310
|
|
path: /smoke
|
|
test: VERSION=3.10 ./venv.sh
|
|
- name: smoke311
|
|
path: /smoke
|
|
test: VERSION=3.11 ./venv.sh
|
|
- name: smoke39_virtualenv
|
|
path: /smoke
|
|
test: VERSION=3.9 METHOD=virtualenv ./venv.sh
|
|
- name: smoke310_virtualenv
|
|
path: /smoke
|
|
test: VERSION=3.10 METHOD=virtualenv ./venv.sh
|
|
- name: smoke311_virtualenv
|
|
path: /smoke
|
|
test: VERSION=3.11 METHOD=virtualenv ./venv.sh
|
|
- name: smoke312_virtualenv
|
|
path: /smoke
|
|
test: VERSION=3.12 METHOD=virtualenv VIRTUALENV_SETUPTOOLS=bundle ./venv.sh
|
|
- name: smoke313_virtualenv
|
|
path: /smoke
|
|
test: VERSION=3.13 METHOD=virtualenv VIRTUALENV_SETUPTOOLS=bundle ./venv.sh
|
|
- name: smoke314_virtualenv
|
|
path: /smoke
|
|
test: VERSION=3.14 METHOD=virtualenv VIRTUALENV_SETUPTOOLS=bundle ./venv.sh
|
|
|
|
prepare:
|
|
- name: Install dependencies
|
|
how: install
|
|
package:
|
|
- gcc
|
|
- virtualenv
|
|
- python3.6
|
|
- python3.9
|
|
- python3.10-devel
|
|
- python3.11-devel
|
|
- python3.12-devel
|
|
- python3.13-devel
|
|
- python3.14-devel
|
|
- python3-devel
|
|
- python3-tox
|
|
- mock
|
|
- rpmdevtools
|
|
- rpm-build
|
|
- dnf
|
|
- name: Update packages
|
|
how: shell
|
|
script: dnf upgrade -y
|
|
- name: rpm_qa
|
|
order: 100
|
|
how: shell
|
|
script: rpm -qa | sort | tee $TMT_PLAN_DATA/rpmqa.txt
|