2019-09-30 21:02:19 +00:00
|
|
|
---
|
|
|
|
- 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
|
2022-01-26 19:47:16 +00:00
|
|
|
timeout: 45m
|
2023-02-15 14:00:35 +00:00
|
|
|
environment:
|
|
|
|
QUADLET: /usr/libexec/podman/quadlet
|
2019-09-30 21:02:19 +00:00
|
|
|
- rootless-test:
|
|
|
|
# running the test with su doesn't create the directory for fedora user on /run/user/
|
|
|
|
# so create it manually
|
|
|
|
dir: ./
|
2020-05-21 16:07:34 +00:00
|
|
|
run: loginctl enable-linger fedora; su -c ${PWD}/test_podman.sh - fedora
|
2022-01-26 19:47:16 +00:00
|
|
|
timeout: 45m
|
2023-02-15 14:00:35 +00:00
|
|
|
environment:
|
|
|
|
QUADLET: /usr/libexec/podman/quadlet
|