From 2ae60cdba6f7759e301097b4736924028c50f57a Mon Sep 17 00:00:00 2001 From: Agent Date: Mon, 6 Jul 2026 18:34:59 +0000 Subject: [PATCH] ci: fix pytest path (no tests/ dir) --- .gitea/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 6e8b1f4..ca4cb25 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -60,7 +60,7 @@ jobs: python3 -m pip install --upgrade pip pip3 install -e ".[dev]" 2>/dev/null || pip3 install -e . 2>/dev/null || true pip3 install pytest pytest-cov - pytest tests/ -v --tb=short + pytest -v --tb=short else echo "No Python project detected, skipping pytest" fi