Add build manifest

This commit is contained in:
Ivan Habunek 2022-11-22 16:25:04 +01:00
parent 5c10479d65
commit f1dca18365
No known key found for this signature in database
GPG Key ID: CDBD63C43A30BB95
1 changed files with 16 additions and 0 deletions

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