99d952cd6c
Resolves https://bugzilla.redhat.com/show_bug.cgi?id=1808601 tox docs: https://tox.readthedocs.io/en/latest/example/basic.html#depending-on-requirements-txt-or-defining-constraints Relevant tox-current-env issue: https://github.com/fedora-python/tox-current-env/issues/22
38 lines
700 B
YAML
38 lines
700 B
YAML
---
|
|
- hosts: localhost
|
|
tags:
|
|
- classic
|
|
tasks:
|
|
- dnf:
|
|
name: "*"
|
|
state: latest
|
|
|
|
- hosts: localhost
|
|
roles:
|
|
- role: standard-test-basic
|
|
tags:
|
|
- classic
|
|
tests:
|
|
- pytest:
|
|
dir: .
|
|
run: ./mocktest.sh python-pytest
|
|
- entrypoints:
|
|
dir: .
|
|
run: ./mocktest.sh python-entrypoints
|
|
- pluggy:
|
|
dir: .
|
|
run: ./mocktest.sh python-pluggy
|
|
- clikit:
|
|
dir: .
|
|
run: ./mocktest.sh python-clikit
|
|
- tldr:
|
|
dir: .
|
|
run: ./mocktest.sh tldr
|
|
- openqa_client:
|
|
dir: .
|
|
run: ./mocktest.sh python-openqa_client
|
|
required_packages:
|
|
- mock
|
|
- rpmdevtools
|
|
- rpm-build
|