32 lines
812 B
Text
32 lines
812 B
Text
execute:
|
|
how: tmt
|
|
|
|
discover:
|
|
- name: tests_python
|
|
how: shell
|
|
url: https://src.fedoraproject.org/tests/python.git
|
|
tests:
|
|
- name: smoke
|
|
path: /smoke
|
|
test: "VERSION=3.6 TOX_REQUIRES='virtualenv<20.22.0' ./venv.sh"
|
|
- name: marshalparser
|
|
path: /marshalparser
|
|
test: "VERSION=3.6 SAMPLE=10 ./test_marshalparser_compatibility.sh"
|
|
|
|
prepare:
|
|
- name: Install dependencies
|
|
how: install
|
|
package:
|
|
- gcc
|
|
- python3-tox
|
|
- python3.6
|
|
- glibc-all-langpacks # for locale tests
|
|
- marshalparser # for testing compatibility (magic numbers) with marshalparser
|
|
- dnf # for upgrade
|
|
- name: Update packages
|
|
how: shell
|
|
script: dnf upgrade -y
|
|
- name: rpm_qa
|
|
order: 100
|
|
how: shell
|
|
script: rpm -qa | sort | tee $TMT_PLAN_DATA/rpmqa.txt
|