1
0
mirror of https://github.com/ihabunek/toot.git synced 2024-06-16 06:15:25 +00:00
toot/.build.yml
2022-11-22 17:29:49 +01:00

17 lines
306 B
YAML

image: debian/bookworm
packages:
- python3-venv
- postgresql
sources:
- https://github.com/ihabunek/toot
tasks:
- test: |
cd toot
python3 -m venv venv
. ./venv/bin/activate
pip install -e .
pip install pytest
pip install psycopg2-binary
pytest
shell: true