Skip to content

Commit 88d2b3c

Browse files
committed
Use env check action in old unit tests [skip azp][skip circle]
1 parent f906620 commit 88d2b3c

2 files changed

Lines changed: 6 additions & 2 deletions

File tree

.github/workflows/tests.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,11 @@ jobs:
149149
- run: bash ./tools/github_actions_verify_python.sh "${{ matrix.python }}"
150150
- run: bash ./tools/github_actions_dependencies.sh
151151
timeout-minutes: 10
152-
- run: python ./tools/github_actions_check_old_env.py
152+
- name: Run MNE-Tools action
153+
uses: tsbinns/mne-tools/actions/check-environment@add_tools
154+
with:
155+
project-root: ${{ github.workspace }}
156+
groups: lockfile_extras
153157
if: matrix.kind == 'old'
154158
# Minimal commands on Linux (macOS stalls)
155159
- uses: actions/cache@v5.0.5

tools/github_actions_dependencies.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ elif [[ "${MNE_CI_KIND}" == "old" ]]; then
2929
STD_ARGS="--progress-bar off"
3030
echo "::group::Syncing old environment dependencies from lockfile using uv"
3131
uv pip sync ${SCRIPT_DIR}/pylock.ci-old.toml
32-
uv pip install pip tomlkit ${MNE_QT_BACKEND}
32+
uv pip install pip ${MNE_QT_BACKEND}
3333
echo "::endgroup::"
3434
elif [[ "${MNE_CI_KIND}" == "pip-ft" ]]; then
3535
# This one is free-threaded so can't have PySide6/PyQt6 as of 2026/06/16

0 commit comments

Comments
 (0)