iac/.woodpecker.yml

14 lines
612 B
YAML
Raw Normal View History

2023-12-09 03:55:20 +05:30
steps:
backend:
image: python
commands:
- apt-get update
- apt-get install -y ca-certificates curl gnupg tar wget libssl-dev python3-pip cython3 pipx
- pipx install --include-deps ansible
- pipx ensurepath && echo $SHELL
2023-12-09 04:25:38 +05:30
- /root/.local/bin/ansible-galaxy install -r ./ansible/requirements.yml
- /root/.local/bin/ansible-playbook --connection=local -i localhost, --limit 127.0.0.1 ./ansible/mcaptcha.yml
2023-12-09 04:12:23 +05:30
- pipx install --include-deps pytest-testinfra
2023-12-09 03:55:20 +05:30
- cd tests/cache/ && py.test --verbose base.py
- cd tests/mcaptcha/ && py.test --verbose base.py