Skip to content

Commit

Permalink
ignoring an additional file which is created when running LayerManage…
Browse files Browse the repository at this point in the history
…r test. Added logging around the DataManager test failing in the CI
  • Loading branch information
Sean-McCann-HG committed Apr 19, 2024
1 parent 1c0a848 commit 90316ce
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,5 @@ AIMSDataManager/.cache/*
/.cache/
/AimsLogging.html
/Config.html
*.vscode
*.vscode
symbology-style.db
6 changes: 6 additions & 0 deletions QGIS-AIMS-Plugin/test/DataManager_Test.py
Original file line number Diff line number Diff line change
Expand Up @@ -148,8 +148,14 @@ def tearDown(self):

def test10_rf(self):
len1 = self.dm.persist.ADL[self.ar]
print(f'\n<<<Len 1>>>')
print(len1[0])
print(f'<<<Len 1>>>\n')
time.sleep(TS1)
len2 = self.dm.persist.ADL[self.ar]
print(f'\n<<<Len 2>>>')
print(len2[0])
print(f'<<<Len 2>>>\n')
self.assertNotEqual(len1,len2,'Resolutionfeed didn\'t update within {} seconds'.format(TS1))

class Test_4_DataManagerShift(unittest.TestCase):
Expand Down

0 comments on commit 90316ce

Please sign in to comment.