slixmpp/.woodpecker/test.yml

20 lines
337 B
YAML
Raw Normal View History

2025-01-27 06:52:07 -08:00
when:
event: [ push, pull_request ]
2023-07-06 06:39:13 -07:00
steps:
unit_tests:
image: "python:${TAG}"
commands:
- apt-get update
- apt-get install -y python3 python3-pip cython3 gpg
- pip3 install emoji aiohttp cryptography setuptools
2023-07-06 06:39:13 -07:00
- ./run_tests.py
matrix:
TAG:
- "3.9"
- "3.10"
- "3.11"
- "3.12"
- "3.13"