diff --git a/.builds/test.yml b/.builds/test.yml index 1705f83..daa11ab 100644 --- a/.builds/test.yml +++ b/.builds/test.yml @@ -1,13 +1,18 @@ -image: archlinux +image: alpine/edge packages: - - python-poetry + - python3 + - python3-dev + - py3-pip + - libffi-dev + - openssl-dev sources: - https://git.sr.ht/~fmartingr/jeeves tasks: - setup: | - python -V + pip install poetry + python3 -V cd jeeves - poetry install + $HOME/.local/bin/poetry install - test: | cd jeeves - poetry run pytest . --cov=jeeves.core --cov-report html --cov-report term + $HOME/.local/bin/poetry run pytest . --cov=jeeves.core --cov-report html --cov-report term