2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-06-18 13:05:42 +00:00

Update unit tests to match new docker paths (#3360)

* Update unit tests to match new docker paths

Ref: https://github.com/inventree/InvenTree/pull/3357

* Add "wait" step before running dev server
This commit is contained in:
Oliver
2022-07-20 11:44:25 +10:00
committed by GitHub
parent 5bb76a3730
commit e383d6e955
2 changed files with 9 additions and 9 deletions

View File

@ -691,7 +691,7 @@ class TestSettings(helpers.InvenTreeTestCase):
valid = [
'inventree/config.yaml',
'inventree/dev/config.yaml',
'inventree/data/config.yaml',
]
self.assertTrue(any([opt in config.get_config_file().lower() for opt in valid]))
@ -706,7 +706,7 @@ class TestSettings(helpers.InvenTreeTestCase):
valid = [
'inventree/plugins.txt',
'inventree/dev/plugins.txt',
'inventree/data/plugins.txt',
]
self.assertTrue(any([opt in config.get_plugin_file().lower() for opt in valid]))