From c740a96d35814bb3c4a6561e4661074f91d42e1d Mon Sep 17 00:00:00 2001 From: Guillem Borrell Date: Tue, 11 Jun 2024 18:59:54 +0200 Subject: [PATCH] Fix path --- .woodpecker.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.woodpecker.yml b/.woodpecker.yml index 16bbff3..f806726 100644 --- a/.woodpecker.yml +++ b/.woodpecker.yml @@ -1,10 +1,10 @@ pipeline: - build-image: + run-tests: image: python:3.12-slim commands: - pip install uv - uv pip install --python /usr/local/bin/python3 --no-cache -r requirements.txt - uv pip install --python /usr/local/bin/python3 -e . - uv pip install --python /usr/local/bin/python3 pytest - - pytest ./tests/test_user.py - - pytest ./tests/test_data.py + - pytest ./test/test_user.py + - pytest ./test/test_data.py