Skip to content

Commit

Permalink
FIX: Print path
Browse files Browse the repository at this point in the history
  • Loading branch information
larsoner committed Dec 8, 2023
1 parent 0896fc4 commit a8bb200
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions mne/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -984,6 +984,11 @@ def pytest_terminal_summary(terminalreporter, exitstatus, config):
writer.line(f"{timing.ljust(15)}{name}")


def pytest_report_header(config, startdir):
"""Add information to the pytest run header."""
return f"MNE {mne.__version__} -- {str(Path(mne.__file__).parent)}"


@pytest.fixture(scope="function", params=("Numba", "NumPy"))
def numba_conditional(monkeypatch, request):
"""Test both code paths on machines that have Numba."""
Expand Down

0 comments on commit a8bb200

Please sign in to comment.