From 2e8c4aba78272898ea8ea9ae80090d805cb8edad Mon Sep 17 00:00:00 2001 From: GitHub Actions Bot <16064504+grave0x@users.noreply.github.com> Date: Mon, 10 Aug 2026 19:26:17 +0930 Subject: [PATCH] fix(ci): install dev extras so pytest is available The weekly datasets-refresh run installs base deps only (pip install -e .) then runs 'python -m pytest', which fails with ModuleNotFoundError: No module named 'pytest' on every schedule hit. Install with the dev extra. --- .github/workflows/datasets-refresh.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/datasets-refresh.yml b/.github/workflows/datasets-refresh.yml index 31f9af5..b9861ae 100644 --- a/.github/workflows/datasets-refresh.yml +++ b/.github/workflows/datasets-refresh.yml @@ -19,7 +19,7 @@ jobs: - name: Install run: | python -m pip install -U pip - pip install -e . + pip install -e ".[dev]" - name: List dataset cache status run: wallbreaker datasets list