22 lines
820 B
YAML
22 lines
820 B
YAML
---
|
|
- 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: VERSION=3.8 ./venv.sh
|
|
- selftest:
|
|
dir: python/selftest
|
|
run: VERSION=3.8 X="-x test_socket -x test_asyncgen -x test_asyncio -x test_compile -x test_concurrent_futures -x test_itertools -x test_multiprocessing_fork -x test_multiprocessing_forkserver -x test_shutil -x test_time -x test_multiprocessing_spawn -x test_threading -x test_wsgiref" ./parallel.sh
|
|
required_packages:
|
|
- gcc # for extension building in venv and selftest
|
|
- python38 # the test subject
|
|
- python3-tox # for venv tests
|
|
- glibc-all-langpacks # for locale tests
|