4b6961f25f
gdb has been fixed in Rawhide: https://bugzilla.redhat.com/show_bug.cgi?id=1638798 https://bugzilla.redhat.com/show_bug.cgi?id=1634781 Install also gdb in selftest to no longer skip test_gdb on the x86_64 CI. But test_gdb is still skipped on armv7hl: https://bugzilla.redhat.com/show_bug.cgi?id=1196181 And skipped on s390x: https://bugzilla.redhat.com/show_bug.cgi?id=1678277
29 lines
1.3 KiB
YAML
29 lines
1.3 KiB
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.7 ./venv.sh
|
|
- selftest:
|
|
dir: python/selftest
|
|
run: VERSION=3.7 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
|
|
- findleaks:
|
|
dir: python/selftest
|
|
run: VERSION=3.7 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" ./findleaks.sh
|
|
required_packages:
|
|
- gcc # for extension building in venv and selftest
|
|
- gdb # for test_gdb
|
|
- python3-debug # for leak testing
|
|
- python3-devel # for extension building in venv and selftest
|
|
- python3-tkinter # for selftest
|
|
- python3-test # for selftest
|
|
- python3-tox # for venv tests
|
|
- glibc-all-langpacks # for locale tests
|