From 90316cef883d5e0b396308b614af6a4af1b0ac68 Mon Sep 17 00:00:00 2001 From: Sean McCann Date: Fri, 19 Apr 2024 16:42:51 +1200 Subject: [PATCH] ignoring an additional file which is created when running LayerManager test. Added logging around the DataManager test failing in the CI --- .gitignore | 3 ++- QGIS-AIMS-Plugin/test/DataManager_Test.py | 6 ++++++ 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 8df8550..86f3828 100644 --- a/.gitignore +++ b/.gitignore @@ -13,4 +13,5 @@ AIMSDataManager/.cache/* /.cache/ /AimsLogging.html /Config.html -*.vscode \ No newline at end of file +*.vscode +symbology-style.db \ No newline at end of file diff --git a/QGIS-AIMS-Plugin/test/DataManager_Test.py b/QGIS-AIMS-Plugin/test/DataManager_Test.py index a81b6c2..9c63bdc 100644 --- a/QGIS-AIMS-Plugin/test/DataManager_Test.py +++ b/QGIS-AIMS-Plugin/test/DataManager_Test.py @@ -148,8 +148,14 @@ def tearDown(self): def test10_rf(self): len1 = self.dm.persist.ADL[self.ar] + print(f'\n<<>>') + print(len1[0]) + print(f'<<>>\n') time.sleep(TS1) len2 = self.dm.persist.ADL[self.ar] + print(f'\n<<>>') + print(len2[0]) + print(f'<<>>\n') self.assertNotEqual(len1,len2,'Resolutionfeed didn\'t update within {} seconds'.format(TS1)) class Test_4_DataManagerShift(unittest.TestCase):