mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-02-04 07:51:50 +00:00
* Add missing aliases files. * Fix directory name. * Add another missing aliases file. * Adjust test to also work with newer jsonpatch versions. |
||
|---|---|---|
| .. | ||
| tasks | ||
| vars | ||
| aliases | ||
| README.md | ||
Running keycloak_client module integration test
To run Keycloak client module's integration test, start a keycloak server using Docker:
docker run -d --rm --name mykeycloak -p 8080:8080 -e KEYCLOAK_ADMIN=admin -e KEYCLOAK_ADMIN_PASSWORD=password quay.io/keycloak/keycloak:latest start-dev --http-relative-path /auth
Run the integration tests:
ansible-test integration -v keycloak_client --allow-unsupported --docker --docker-network host
Cleanup:
docker stop mykeycloak