pypy3.10/tests/tests.yml

33 lines
745 B
YAML

---
- hosts: localhost
tags:
- classic
tasks:
- ansible.builtin.dnf:
name: "*"
state: latest
- ansible.builtin.user:
name: testuser
- 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
run: runuser testuser -c 'PYTHON=pypy3.10 VERSION=3.10 ./venv.sh'
- smoke_virtualenv:
dir: python/smoke
run: runuser testuser -c 'PYTHON=pypy3.10 VERSION=3.10 METHOD=virtualenv TOX=false ./venv.sh'
required_packages:
- util-linux
- gcc
- python3-tox
- python3-virtualenv
- pypy3.10-devel