Skip to content

Commit 9aae8f5

Browse files
committed
FIX: Better
1 parent 4b51621 commit 9aae8f5

2 files changed

Lines changed: 4 additions & 3 deletions

File tree

mne/utils/config.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -849,11 +849,9 @@ def sys_info(
849849
"pytest",
850850
"statsmodels",
851851
"numpydoc",
852-
"flake8",
853852
"jupyter_client",
854853
"nbclient",
855854
"nbformat",
856-
"pydocstyle",
857855
"nitime",
858856
"imageio",
859857
"imageio-ffmpeg",

tools/github_actions_dependencies.sh

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,10 @@ INSTALL_KIND="test_extra,hdf5"
99
if [ ! -z "$CONDA_ENV" ]; then
1010
echo "Uninstalling MNE for CONDA_ENV=${CONDA_ENV}"
1111
# This will fail if mne-base is not in the env (like in our minimial/old envs, so ||true them):
12+
echo "::group::Uninstalling MNE"
1213
conda remove -c conda-forge --force -yq mne-base || true
1314
python -m pip uninstall -y mne || true
15+
echo "::endgroup::"
1416
# If using bare environment.yml and not on windows, do a non-editable install
1517
if [[ "${RUNNER_OS}" != "Windows" ]] && [[ "${CONDA_ENV}" != "environment_"* ]]; then
1618
INSTALL_ARGS=""
@@ -30,5 +32,6 @@ else
3032
fi
3133
echo ""
3234

33-
echo "Installing test dependencies using pip"
35+
echo "::group::Installing test dependencies using pip"
3436
python -m pip install $STD_ARGS $INSTALL_ARGS .[$INSTALL_KIND]
37+
echo "::endgroup::"

0 commit comments

Comments
 (0)