PythonTestHelper class declaration — test-frame convenience for MNE-Python cross-validation. More...
#include "utils_global.h"#include "python_runner.h"#include <Eigen/Core>#include <QObject>#include <QString>#include <QStringList>#include <QVariantMap>

Go to the source code of this file.
Classes | |
| class | UTILSLIB::PythonTestHelper |
Namespaces | |
| namespace | UTILSLIB |
| Shared utilities (I/O helpers, spectral analysis, layout management, warp algorithms). | |
Macros | |
| #define | GUARD_PYTHON(available, reason) |
| Test helper for MNE-Python cross-validation. | |
| #define | GUARD_PYTHON_PACKAGE(helper, packageName) |
| Skip (or fail) the current test if a Python package is missing. | |
PythonTestHelper class declaration — test-frame convenience for MNE-Python cross-validation.
Copyright (C) 2026, Christoph Dinh. All rights reserved.
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Definition in file python_test_helper.h.
| #define GUARD_PYTHON | ( | available, | |
| reason ) |
Test helper for MNE-Python cross-validation.
Test-frame convenience class for cross-validating MNE-CPP outputs against MNE-Python reference implementations.
Usage inside a QTest test:
When MNE-Python is not installed, tests should QSKIP gracefully — but never silently. Use the GUARD_PYTHON / GUARD_PYTHON_PACKAGE macros to ensure skips are intentional and visible. When the environment variable MNE_REQUIRE_PYTHON=true is set (e.g. in CI), those macros QFAIL instead of QSKIP, so a missing Python installation is treated as a hard error.
Skip (or fail) the current test if Python is not available.
Use this macro at the top of any test slot that requires Python.
| helper | A PythonTestHelper (or bool) — must support operator bool / isAvailable(). |
| reason | Human-readable reason string. |
Definition at line 109 of file python_test_helper.h.
| #define GUARD_PYTHON_PACKAGE | ( | helper, | |
| packageName ) |
Skip (or fail) the current test if a Python package is missing.
| helper | A PythonTestHelper instance. |
| packageName | Package name string (e.g. "sklearn"). |
Definition at line 124 of file python_test_helper.h.