From e2ac5f354e42ee9601ddf92ded92960d5e9a0d9a Mon Sep 17 00:00:00 2001 From: Malik Irain Date: Tue, 9 Dec 2025 10:12:53 +0100 Subject: [PATCH 1/3] Moved workflow into .github folder --- {workflows => .github/workflows}/Test.yml | 0 {workflows => .github/workflows}/Testbase.yml | 0 {workflows => .github/workflows}/compatibility.yml | 0 {workflows => .github/workflows}/python-publish.yml | 0 {workflows => .github/workflows}/updater.yml | 0 5 files changed, 0 insertions(+), 0 deletions(-) rename {workflows => .github/workflows}/Test.yml (100%) rename {workflows => .github/workflows}/Testbase.yml (100%) rename {workflows => .github/workflows}/compatibility.yml (100%) rename {workflows => .github/workflows}/python-publish.yml (100%) rename {workflows => .github/workflows}/updater.yml (100%) diff --git a/workflows/Test.yml b/.github/workflows/Test.yml similarity index 100% rename from workflows/Test.yml rename to .github/workflows/Test.yml diff --git a/workflows/Testbase.yml b/.github/workflows/Testbase.yml similarity index 100% rename from workflows/Testbase.yml rename to .github/workflows/Testbase.yml diff --git a/workflows/compatibility.yml b/.github/workflows/compatibility.yml similarity index 100% rename from workflows/compatibility.yml rename to .github/workflows/compatibility.yml diff --git a/workflows/python-publish.yml b/.github/workflows/python-publish.yml similarity index 100% rename from workflows/python-publish.yml rename to .github/workflows/python-publish.yml diff --git a/workflows/updater.yml b/.github/workflows/updater.yml similarity index 100% rename from workflows/updater.yml rename to .github/workflows/updater.yml From e724ce465cfcfc024aa6316154b7c3f941dbdbbe Mon Sep 17 00:00:00 2001 From: Malik Irain Date: Tue, 9 Dec 2025 10:37:16 +0100 Subject: [PATCH 2/3] update compatibility test --- tests/test_plugin_package_structure.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_plugin_package_structure.py b/tests/test_plugin_package_structure.py index fb9548a..176a108 100644 --- a/tests/test_plugin_package_structure.py +++ b/tests/test_plugin_package_structure.py @@ -126,7 +126,7 @@ def test_compatibility(capsys): plugin = PyMoDAQPlugin(get_package_name(), None) success = plugin.all_imports_valid() - msg = '\n'.join(plugin._failed_imports + ['']) + msg = '\n'.join(plugin.failed_imports + ['']) if not success: plugin.save_import_report(".") From 709eac435767662b0f366f7c56e2985718ce76e6 Mon Sep 17 00:00:00 2001 From: Malik Irain Date: Tue, 9 Dec 2025 17:50:04 +0100 Subject: [PATCH 3/3] final corrections on compatibility --- tests/test_plugin_package_structure.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_plugin_package_structure.py b/tests/test_plugin_package_structure.py index 176a108..71a6a1a 100644 --- a/tests/test_plugin_package_structure.py +++ b/tests/test_plugin_package_structure.py @@ -129,6 +129,6 @@ def test_compatibility(capsys): msg = '\n'.join(plugin.failed_imports + ['']) if not success: - plugin.save_import_report(".") + plugin.save_import_report('.') assert success, msg \ No newline at end of file