92baedb481
Add gating tests, rawhide only. These are an almost-verbatim copy of podman's gating tests - as of this writing there is no way for CI tests to say "run another package's tests". Miro is aware of the need for this, and says the feature may be available "sooner or later" [conversation in #osci] Signed-off-by: Ed Santiago <santiago@redhat.com>
24 lines
655 B
YAML
24 lines
655 B
YAML
---
|
|
- hosts: localhost
|
|
roles:
|
|
- role: standard-test-basic
|
|
tags:
|
|
- classic
|
|
- container
|
|
required_packages:
|
|
- bats
|
|
- conmon
|
|
- podman
|
|
- podman-tests
|
|
tests:
|
|
- root-test:
|
|
dir: ./
|
|
run: ./test_podman.sh
|
|
timeout: 15m
|
|
- rootless-test:
|
|
# running the test with su doesn't create the directory for fedora user on /run/user/
|
|
# so create it manually
|
|
dir: ./
|
|
run: mkdir /run/user/$(id -u fedora); chown fedora /run/user/$(id -u fedora); su -c ${PWD}/test_podman.sh - fedora
|
|
timeout: 15m
|