Allow some variation in unit test

This commit is contained in:
Oliver 2022-05-18 11:51:14 +10:00
parent 2cfa4c0a16
commit 3b53260d75

View File

@ -533,7 +533,13 @@ class TestSettings(TestCase):
def test_helpers_plugin_file(self):
# normal run - not configured
self.assertIn('InvenTree/InvenTree/plugins.txt', config.get_plugin_file())
valid = [
'inventree/plugins.txt',
'inventree/dev/plugins.txt',
]
self.assertIn(config.get_plugin_file().lower(), valid)
# with env set
with self.in_env_context({'INVENTREE_PLUGIN_FILE': 'my_special_plugins.txt'}):