Add build manifest

integration-testing
Ivan Habunek 2022-11-22 16:25:04 +01:00
rodzic 5863777830
commit f299af3a1a
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: CDBD63C43A30BB95
1 zmienionych plików z 16 dodań i 0 usunięć

16
.build.yml 100644
Wyświetl plik

@ -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