From bbdb63604eb85066755c9ebf108c93f97ea40c07 Mon Sep 17 00:00:00 2001 From: Povilas Kanapickas Date: Thu, 5 Jun 2025 18:24:18 +0300 Subject: [PATCH] README: Update section on tests Signed-off-by: Povilas Kanapickas --- README.md | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index f111a45..65c8a6c 100644 --- a/README.md +++ b/README.md @@ -139,16 +139,20 @@ There is also AWX 17.1.0 ## Tests -Inside `tests/` directory we have many useless docker-compose stacks -that are meant to test as many cases as we can to make sure we are compatible +podman-compose is tested via unit and integration tests. -### Unit tests with unittest -run a unittest with following command +Unit tests can be run via the following: ```shell python3 -m unittest discover tests/unit ``` +Integration tests can be run via the following: + +```shell +python3 -m unittest discover tests/integration +``` + # Contributing guide If you are a user or a developer and want to contribute please check the [CONTRIBUTING](CONTRIBUTING.md) section