1
0
mirror of https://github.com/ihabunek/toot.git synced 2024-06-16 06:15:25 +00:00

Add build manifest

This commit is contained in:
Ivan Habunek 2022-11-22 16:25:04 +01:00
parent 5863777830
commit f299af3a1a
No known key found for this signature in database
GPG Key ID: CDBD63C43A30BB95

16
.build.yml Normal file
View File

@ -0,0 +1,16 @@
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