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 diff --git a/tests/test_plugin_package_structure.py b/tests/test_plugin_package_structure.py index fb9548a..71a6a1a 100644 --- a/tests/test_plugin_package_structure.py +++ b/tests/test_plugin_package_structure.py @@ -126,9 +126,9 @@ 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(".") + plugin.save_import_report('.') assert success, msg \ No newline at end of file