From 90daa46604a1d4e8c24695ceaa29331b3cef25bc Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Wed, 4 Feb 2026 20:12:36 +0000 Subject: [PATCH] fix: update CI workflow to run confsync tests correctly --- .gitea/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 4afc115..dcf4d39 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -23,10 +23,10 @@ jobs: pip install -e ".[dev]" - name: Run tests - run: pytest tests/ -v --tb=short + run: pytest confsync/tests/ -v --tb=short - name: Run linting - run: ruff check . + run: ruff check confsync/ - name: Check types run: mypy confsync/ --ignore-missing-imports