From 30e64faa5f6eee1b50cab7eeaa3e584240a3475b Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Sun, 22 Mar 2026 11:51:39 +0000 Subject: [PATCH] Update CI - install dependencies explicitly before package --- .gitea/workflows/ci.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index a345027..9f667b5 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -12,4 +12,10 @@ jobs: - uses: actions/setup-python@v5 with: python-version: '3.11' - - run: pip install pytest && pip install -e . && pytest tests/ -v \ No newline at end of file + - name: Install dependencies + run: | + pip install pytest pytest-asyncio + pip install click cryptography pygments rich zeroconf + pip install -e . + - name: Run tests + run: pytest tests/ -v \ No newline at end of file