Fedora CI: This is now the main Python

This commit is contained in:
Miro Hrončok 2021-06-08 16:13:40 +02:00
parent 51d9e334af
commit d85cc76235
1 changed files with 14 additions and 1 deletions

View File

@ -19,16 +19,29 @@
- smoke: - smoke:
dir: python/smoke dir: python/smoke
run: VERSION=3.10 ./venv.sh run: VERSION=3.10 ./venv.sh
- debugsmoke:
dir: python/smoke
run: PYTHON=python3-debug TOX=false VERSION=3.10 ./venv.sh
- selftest: - selftest:
dir: python/selftest dir: python/selftest
run: VERSION=3.10 X="" ./parallel.sh run: VERSION=3.10 X="" ./parallel.sh
- debugtest:
dir: python/selftest
run: VERSION=3.10 PYTHON=python3-debug X="" ./parallel.sh
- debugflags:
dir: python/flags
run: python3-debug ./assertflags.py -O0
- marshalparser: - marshalparser:
dir: python/marshalparser dir: python/marshalparser
run: VERSION=3.10 SAMPLE=10 test_marshalparser_compatibility.sh run: VERSION=3.10 SAMPLE=10 test_marshalparser_compatibility.sh
required_packages: required_packages:
- gcc # for extension building in venv and selftest - gcc # for extension building in venv and selftest
- gdb # for test_gdb - gdb # for test_gdb
- python3.10 - python3.10 # the test subject
- 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 - python3-tox # for venv tests
- glibc-all-langpacks # for locale tests - glibc-all-langpacks # for locale tests
- marshalparser # for testing compatibility (magic numbers) with marshalparser - marshalparser # for testing compatibility (magic numbers) with marshalparser