From c9d443f1b2ce4d6532a4a65bc3f09ba265aa32d9 Mon Sep 17 00:00:00 2001 From: Alex Selimov Date: Sat, 22 Mar 2025 09:34:19 -0400 Subject: [PATCH] Fix environment --- .gitea/workflows/tests.yaml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/tests.yaml b/.gitea/workflows/tests.yaml index 0ed73b2..7cfdc3c 100644 --- a/.gitea/workflows/tests.yaml +++ b/.gitea/workflows/tests.yaml @@ -6,6 +6,7 @@ jobs: Explore-Gitea-Actions: runs-on: ubuntu-latest steps: - - run: pipx install poetry + - run: pipx install poetry && sudo apt-get install python3-dev -y - run: git clone https://www.alexselimov.com/git/aselimov/code_rag.git && cd code_rag && git checkout ${{ gitea.ref_name }} - - run: cd code_rag && /root/.local/bin/poetry install && /root/.local/bin/poetry run pytest -v + - run: cd code_rag && /root/.local/bin/poetry install + - run: /root/.local/bin/poetry run pytest -v