From 920e0f030089c72321b834009d50cd94fe845055 Mon Sep 17 00:00:00 2001 From: dgtlmoon Date: Fri, 1 Dec 2023 17:41:10 +0100 Subject: [PATCH] allow proxies.json --- changedetectionio/tests/conftest.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/changedetectionio/tests/conftest.py b/changedetectionio/tests/conftest.py index a38117cb..79ea5bc8 100644 --- a/changedetectionio/tests/conftest.py +++ b/changedetectionio/tests/conftest.py @@ -19,6 +19,9 @@ def cleanup(datastore_path): for g in ["*.txt", "*.json", "*.pdf"]: files = glob.glob(os.path.join(datastore_path, g)) for f in files: + if 'proxies.json' in f: + # Usually mounted by docker container during test time + continue if os.path.isfile(f): os.unlink(f)