From 556b7036aafc64e9d2fd8c378b2bf05a7caa1c7c Mon Sep 17 00:00:00 2001 From: Matthias Mair Date: Fri, 20 May 2022 18:42:41 +0200 Subject: [PATCH] remove repo name from assertations this breaks on other runners (gitlab, azure devops) as they handle repo names in another way --- InvenTree/InvenTree/tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/InvenTree/InvenTree/tests.py b/InvenTree/InvenTree/tests.py index 26b50a0eca..b1e06f081a 100644 --- a/InvenTree/InvenTree/tests.py +++ b/InvenTree/InvenTree/tests.py @@ -548,7 +548,7 @@ class TestSettings(TestCase): # with env set with self.in_env_context({'INVENTREE_CONFIG_FILE': 'my_special_conf.yaml'}): - self.assertIn('inventree/inventree/my_special_conf.yaml', config.get_config_file().lower()) + self.assertIn('inventree/my_special_conf.yaml', config.get_config_file().lower()) def test_helpers_plugin_file(self): # normal run - not configured