25 lines
504 B
YAML
25 lines
504 B
YAML
---
|
|
- 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_compatibility312:
|
|
dir: python/marshalparser
|
|
run: VERSION=3.12 SAMPLE=200 test_marshalparser_compatibility.sh
|
|
required_packages:
|
|
- python3.12
|
|
- marshalparser
|