2020-07-29 11:16:08 +00:00
|
|
|
---
|
|
|
|
- hosts: localhost
|
|
|
|
tags:
|
|
|
|
- classic
|
|
|
|
tasks:
|
|
|
|
- dnf:
|
|
|
|
name: "*"
|
|
|
|
state: latest
|
|
|
|
|
|
|
|
- hosts: localhost
|
|
|
|
roles:
|
|
|
|
- role: standard-test-basic
|
|
|
|
tags:
|
|
|
|
- classic
|
|
|
|
repositories:
|
|
|
|
- repo: "https://src.fedoraproject.org/tests/python.git"
|
|
|
|
dest: "python"
|
|
|
|
tests:
|
|
|
|
- marshalparser_compatibility36:
|
|
|
|
dir: python/marshalparser
|
|
|
|
run: VERSION=3.6 SAMPLE=200 test_marshalparser_compatibility.sh
|
|
|
|
- marshalparser_compatibility37:
|
|
|
|
dir: python/marshalparser
|
|
|
|
run: VERSION=3.7 SAMPLE=200 test_marshalparser_compatibility.sh
|
|
|
|
- marshalparser_compatibility38:
|
|
|
|
dir: python/marshalparser
|
|
|
|
run: VERSION=3.8 SAMPLE=200 test_marshalparser_compatibility.sh
|
|
|
|
- marshalparser_compatibility39:
|
|
|
|
dir: python/marshalparser
|
|
|
|
run: VERSION=3.9 SAMPLE=200 test_marshalparser_compatibility.sh
|
2020-11-10 07:20:29 +00:00
|
|
|
- marshalparser_compatibility310:
|
|
|
|
dir: python/marshalparser
|
|
|
|
run: VERSION=3.10 SAMPLE=200 test_marshalparser_compatibility.sh
|
2021-10-12 23:22:44 +00:00
|
|
|
- marshalparser_compatibility311:
|
|
|
|
dir: python/marshalparser
|
|
|
|
run: VERSION=3.11 SAMPLE=200 test_marshalparser_compatibility.sh
|
2022-11-05 14:20:25 +00:00
|
|
|
- marshalparser_compatibility312:
|
|
|
|
dir: python/marshalparser
|
|
|
|
run: VERSION=3.12 SAMPLE=200 test_marshalparser_compatibility.sh
|
2020-07-29 11:16:08 +00:00
|
|
|
required_packages:
|
|
|
|
- python3.6
|
|
|
|
- python3.7
|
|
|
|
- python3.8
|
|
|
|
- python3.9
|
2020-11-10 07:20:29 +00:00
|
|
|
- python3.10
|
2021-10-12 23:22:44 +00:00
|
|
|
- python3.11
|
2022-11-05 14:20:25 +00:00
|
|
|
- python3.12
|
2020-07-29 11:16:08 +00:00
|
|
|
- marshalparser
|