From a16d43633699b900cb8351c0b08519380d8b77a9 Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Sun, 22 Mar 2026 21:36:10 +0000 Subject: [PATCH] CI: install without dev dependencies first --- .gitea/workflows/ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 4e2806f..1f31079 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -18,7 +18,9 @@ jobs: python-version: '3.10' - name: Install dependencies - run: pip install -e ".[dev]" + run: | + pip install -e . + pip install pytest - name: Run tests run: pytest tests/unit/test_generators.py -v