We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 12694e6 commit 653130aCopy full SHA for 653130a
tools/github_actions_env_vars.sh
@@ -29,6 +29,10 @@ else # conda-like
29
echo "MNE_QT_BACKEND=PySide6" | tee -a $GITHUB_ENV
30
# TODO: Also need "|unreliable on GitHub Actions conda" on macOS, but omit for now to make sure the failure actually shows up
31
echo "MNE_TEST_ALLOW_SKIP=.*(Requires (spm|brainstorm) dataset|CUDA not|PySide6 causes segfaults|Accelerate|Flakey verbose behavior).*" | tee -a $GITHUB_ENV
32
+ # Our cache_dir test has problems when the path is too long, so prevent it from getting too long
33
+ if [[ "$RUNNER_OS" == "macOS" ]]; then
34
+ echo "PYTEST_DEBUG_TEMPROOT=/tmp" | tee -a $GITHUB_ENV
35
+ fi
36
fi
37
38
set +x
0 commit comments