pypy3.10/tests/tests.yml

33 lines
745 B
YAML
Raw Permalink Normal View History

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
2023-08-01 22:41:55 +00:00
run: runuser testuser -c 'PYTHON=pypy3.10 VERSION=3.10 ./venv.sh'
2022-06-09 11:09:53 +00:00
- smoke_virtualenv:
dir: python/smoke
2023-08-01 22:41:55 +00:00
run: runuser testuser -c 'PYTHON=pypy3.10 VERSION=3.10 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
2023-08-01 22:41:55 +00:00
- pypy3.10-devel