From 328d64b1265a2ba38499d0b63382003f04c3ed95 Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Sun, 1 Feb 2026 21:04:39 +0000 Subject: [PATCH] Install dependencies then run tests --- .gitea/workflows/ci.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 189ecda..ebb61c7 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -10,5 +10,10 @@ jobs: steps: - run: whoami - run: python3 --version - - run: pip install pytest - - run: pytest tests/ -v --tb=short + - name: Install package dependencies + run: | + pip install pytest pyyaml click rich jinja2 jsonschema prompt_toolkit + - name: Install confgen in dev mode + run: pip install -e /app + - name: Run tests + run: pytest /app/tests/ -v --tb=short