From f299af3a1aab36175ccd9200b5752aee5028cc40 Mon Sep 17 00:00:00 2001 From: Ivan Habunek Date: Tue, 22 Nov 2022 16:25:04 +0100 Subject: [PATCH] Add build manifest --- .build.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .build.yml diff --git a/.build.yml b/.build.yml new file mode 100644 index 0000000..d37136a --- /dev/null +++ b/.build.yml @@ -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