From 99b8b5174ac71d67948b3324a38530c6321e3f5a Mon Sep 17 00:00:00 2001 From: Ernesto Ruge Date: Sat, 25 Jan 2025 11:33:40 +0100 Subject: [PATCH] fix ci tests --- .github/workflows/test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 56f2fd9..e0fe359 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -38,7 +38,7 @@ jobs: run: cp config_testing.yaml config.yaml - name: run pytest unit - run: python -m pytest tests/unit + run: python -m pytest -o cache_dir=/tmp tests/unit - name: make logs dir writable for local user run: chmod 777 logs @@ -46,4 +46,4 @@ jobs: - name: run pytest integration env: DOCKER_LOCAL_USER: 1000:1000 - run: docker compose run --rm flask python -m pytest tests/integration + run: docker compose run --rm flask python -m pytest -o cache_dir=/tmp tests/integration