Skip to content

Commit 56a959c

Browse files
author
Inbal Tako
committed
Fix encryption utils
1 parent 7638c0d commit 56a959c

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

tests/configuration_manager_test.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -159,6 +159,7 @@ def ignore_invalid_config_file_entries(self):
159159
self.assertIsNotNone(options)
160160
self.assertEqual(options.fail_over_strategy, FailOverStrategy.FAIL_OPEN)
161161

162+
@unittest.skipIf(platform.system() == "Windows" or platform.system() == "windows", "test not supported on windows")
162163
def test_load_default_config(self):
163164
try:
164165
os.remove(self.config_file_path)
@@ -189,6 +190,7 @@ def test_load_default_config(self):
189190
self.assertEqual(options.log_level, "CRITICAL")
190191
self.assertEqual(options.fail_over_strategy, FailOverStrategy.FAIL_OPEN.value)
191192

193+
@unittest.skipIf(platform.system() == "Windows" or platform.system() == "windows", "test not supported on windows")
192194
def test_get_config_from_env_variables(self):
193195
try:
194196
os.remove(self.config_file_path)

0 commit comments

Comments
 (0)