diff --git a/tests/tests.yml b/tests/tests.yml new file mode 100644 index 0000000..5cee817 --- /dev/null +++ b/tests/tests.yml @@ -0,0 +1,34 @@ +--- + +# Tests that run in classic context +- hosts: localhost + roles: + - role: standard-test-beakerlib + tags: + - classic + repositories: + - repo: "https://src.fedoraproject.org/tests/shell.git" + dest: "shell" + tests: + - shell/func + - shell/login + - shell/smoke + required_packages: + - expect # login requires expect + - which # smoke requires which + +# Tests that run in container and atomic contexts +- hosts: localhost + roles: + - role: standard-test-beakerlib + tags: + - container + - atomic + repositories: + - repo: "https://src.fedoraproject.org/tests/shell.git" + dest: "shell" + tests: + - shell/func + - shell/smoke + required_packages: + - which # smoke requires which