From da75ffd14bf65fb686318b38a97d95f2ea14e61d Mon Sep 17 00:00:00 2001 From: Felipe Martin Date: Sat, 9 May 2020 19:58:50 +0200 Subject: [PATCH] Using alpine image for tests --- .builds/test.yml | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) 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