2018-07-19 15:02:45 +00:00
|
|
|
---
|
2019-11-28 01:42:51 +00:00
|
|
|
- hosts: localhost
|
|
|
|
tags:
|
|
|
|
- classic
|
|
|
|
tasks:
|
|
|
|
- dnf:
|
|
|
|
name: "*"
|
|
|
|
state: latest
|
|
|
|
|
2018-07-19 15:02:45 +00:00
|
|
|
- hosts: localhost
|
|
|
|
roles:
|
|
|
|
- role: standard-test-basic
|
|
|
|
tags:
|
|
|
|
- classic
|
|
|
|
repositories:
|
|
|
|
- repo: "https://src.fedoraproject.org/tests/python.git"
|
|
|
|
dest: "python"
|
|
|
|
tests:
|
2021-06-09 13:01:00 +00:00
|
|
|
- rpm_qa:
|
|
|
|
run: rpm -qa
|
2018-07-19 15:02:45 +00:00
|
|
|
- smoke:
|
|
|
|
dir: python/smoke
|
2022-03-08 09:31:06 +00:00
|
|
|
run: VERSION=3.11 CYTHON=false ./venv.sh
|
2021-10-11 11:14:41 +00:00
|
|
|
- smoke_virtualenv:
|
|
|
|
dir: python/smoke
|
2022-03-08 09:31:06 +00:00
|
|
|
run: VERSION=3.11 CYTHON=false METHOD=virtualenv ./venv.sh
|
2018-11-14 15:34:36 +00:00
|
|
|
- selftest:
|
|
|
|
dir: python/selftest
|
2021-10-06 14:40:28 +00:00
|
|
|
run: VERSION=3.11 X="" ./parallel.sh
|
2020-11-10 12:34:52 +00:00
|
|
|
- marshalparser:
|
|
|
|
dir: python/marshalparser
|
2021-10-06 14:40:28 +00:00
|
|
|
run: VERSION=3.11 SAMPLE=10 test_marshalparser_compatibility.sh
|
2018-07-19 15:02:45 +00:00
|
|
|
required_packages:
|
2018-11-14 15:34:36 +00:00
|
|
|
- gcc # for extension building in venv and selftest
|
2022-05-08 07:44:42 +00:00
|
|
|
- gcc-c++ # for test_cppext
|
2019-01-31 10:56:28 +00:00
|
|
|
- gdb # for test_gdb
|
2021-10-06 14:40:28 +00:00
|
|
|
- python3.11 # the test subject
|
2021-10-11 11:13:50 +00:00
|
|
|
- tox # for venv tests
|
2021-10-11 11:14:41 +00:00
|
|
|
- virtualenv # for virtualenv tests
|
2018-11-14 15:34:36 +00:00
|
|
|
- glibc-all-langpacks # for locale tests
|
2021-05-24 22:56:32 +00:00
|
|
|
- marshalparser # for testing compatibility (magic numbers) with marshalparser
|
2021-06-09 13:01:00 +00:00
|
|
|
- rpm # for debugging
|