[education/labplot] tests/backend/core: Skip one more example project in the new test AbstractAspectTest::loadExampleProjects().
Alexander Semke <[email protected]>
| Newsgroups | gmane.comp.kde.cvs |
|---|---|
| Message-ID | <[email protected]> |
Git commit f5854bbaf822a340eef8f593e629fa66c9492715 by Alexander Semke.
Committed on 10/08/2026 at 21:41.
Pushed by asemke into branch 'master'.
Skip one more example project in the new test AbstractAspectTest::loadExampleProjects().
M +4 -1 tests/backend/core/AbstractAspectTest.cpp
https://invent.kde.org/education/labplot/-/commit/f5854bbaf822a340eef8f593e629fa66c9492715
diff --git a/tests/backend/core/AbstractAspectTest.cpp b/tests/backend/core/AbstractAspectTest.cpp
index 13a9ebb270..f7ab185828 100644
--- a/tests/backend/core/AbstractAspectTest.cpp
+++ b/tests/backend/core/AbstractAspectTest.cpp
@@ -984,9 +984,12 @@ void AbstractAspectTest::loadExampleProjects() {
for (const auto& fi : files) {
// skip project that require python or Maxima runtimes that are not available in the CI environment
if (fi.fileName() == QLatin1String("Seasonal Decomposition with STL and MSTL.lml")
- || fi.fileName() == QLatin1String("Maxima Tutorial for Beginners.lml"))
+ || fi.fileName() == QLatin1String("Maxima Tutorial for Beginners.lml")
+ || fi.fileName() == QLatin1String("Duffing Oscillator in Maxima.lml"))
continue;
+ // QDEBUG(QStringLiteral("loading example project: %1").arg(fi.absoluteFilePath()));
+
Project project;
const bool ok = project.load(fi.absoluteFilePath());
QVERIFY2(ok, qPrintable(QStringLiteral("failed to load: ") + fi.fileName()));