2018-07-20 10:37:22 +00:00
|
|
|
---
|
2022-06-09 11:08:14 +00:00
|
|
|
- hosts: localhost
|
|
|
|
tags:
|
|
|
|
- classic
|
|
|
|
tasks:
|
|
|
|
- ansible.builtin.dnf:
|
|
|
|
name: "*"
|
|
|
|
state: latest
|
2022-06-09 11:09:07 +00:00
|
|
|
- ansible.builtin.user:
|
|
|
|
name: testuser
|
2022-06-09 11:08:14 +00:00
|
|
|
|
2018-07-20 10:37:22 +00:00
|
|
|
- hosts: localhost
|
|
|
|
roles:
|
|
|
|
- role: standard-test-basic
|
|
|
|
tags:
|
|
|
|
- classic
|
|
|
|
repositories:
|
|
|
|
- repo: "https://src.fedoraproject.org/tests/python.git"
|
|
|
|
dest: "python"
|
|
|
|
tests:
|
|
|
|
- smoke:
|
|
|
|
dir: python/smoke
|
2022-06-09 11:09:07 +00:00
|
|
|
run: runuser testuser -c 'PYTHON=pypy3.9 VERSION=3.9 ./venv.sh'
|
2022-06-09 11:09:53 +00:00
|
|
|
- smoke_virtualenv:
|
|
|
|
dir: python/smoke
|
|
|
|
run: runuser testuser -c 'PYTHON=pypy3.9 VERSION=3.9 METHOD=virtualenv TOX=false ./venv.sh'
|
2018-07-20 10:37:22 +00:00
|
|
|
required_packages:
|
2022-06-09 11:09:07 +00:00
|
|
|
- util-linux
|
2018-07-20 10:37:22 +00:00
|
|
|
- gcc
|
|
|
|
- python3-tox
|
2022-06-09 11:09:53 +00:00
|
|
|
- python3-virtualenv
|
2022-01-26 23:30:08 +00:00
|
|
|
- pypy3.9-devel
|