From 5268ca2cfba9fc3eefa92679978c893440c0aee2 Mon Sep 17 00:00:00 2001 From: Pigbibi <20649888+Pigbibi@users.noreply.github.com> Date: Fri, 29 May 2026 18:37:15 +0800 Subject: [PATCH] ci: run tests with pytest discovery --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1689236..439f592 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -21,7 +21,7 @@ jobs: run: | set -euo pipefail python -m pip install --upgrade pip - python -m pip install -e . numpy pandas ruff + python -m pip install -e . numpy pandas pytest ruff - name: Run Ruff run: | @@ -31,4 +31,4 @@ jobs: - name: Run unit tests run: | set -euo pipefail - PYTHONPATH=src python -m unittest discover -s tests -v + PYTHONPATH=src python -m pytest -q tests