summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorvitiko98 <[email protected]>2022-06-21 15:55:39 -0400
committervitiko98 <[email protected]>2022-06-21 15:55:39 -0400
commit616994487c44d31552409e9f2ebfe676c8934c56 (patch)
tree81c200341feae0508c54e1b958d0faeb98bfb177
parent110462c7ba7b47ef99700d925a8d26e77e881b6a (diff)
downloadbazarr-616994487c44d31552409e9f2ebfe676c8934c56.tar.gz
bazarr-616994487c44d31552409e9f2ebfe676c8934c56.zip
no log: add default env vars to bazarr config tests
-rw-r--r--tests/bazarr/conftest.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/bazarr/conftest.py b/tests/bazarr/conftest.py
new file mode 100644
index 000000000..865b92767
--- /dev/null
+++ b/tests/bazarr/conftest.py
@@ -0,0 +1,7 @@
+import os
+import logging
+
+os.environ["NO_CLI"] = "true"
+os.environ["SZ_USER_AGENT"] = "test"
+
+logging.getLogger("rebulk").setLevel(logging.WARNING)