Skip to content

Commit

Permalink
WIP: Fix pip-pre errors [skip circle]
Browse files Browse the repository at this point in the history
  • Loading branch information
larsoner committed Mar 2, 2024
1 parent d17d885 commit 2316a94
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions mne/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -960,6 +960,8 @@ def pytest_sessionfinish(session, exitstatus):
# get the number to print
files = defaultdict(lambda: 0.0)
for item in session.items:
if _phase_report_key not in item.stash:
continue
report = item.stash[_phase_report_key]
dur = sum(x.duration for x in report.values())
parts = Path(item.nodeid.split(":")[0]).parts
Expand Down
2 changes: 1 addition & 1 deletion tools/github_actions_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,5 @@ if [[ ! -z "$CONDA_ENV" ]] && [[ "${RUNNER_OS}" != "Windows" ]]; then
echo "Executing from $(pwd)"
fi
set -x
pytest -m "${CONDITION}" --tb=short --cov=mne --cov-report xml --color=yes --junit-xml=$JUNIT_PATH -vv ${USE_DIRS}
pytest -x -m "${CONDITION}" --tb=short --cov=mne --cov-report xml --color=yes --junit-xml=$JUNIT_PATH -vv ${USE_DIRS}
set +x

0 comments on commit 2316a94

Please sign in to comment.