diff options
author | vitiko98 <[email protected]> | 2022-06-21 15:55:39 -0400 |
---|---|---|
committer | vitiko98 <[email protected]> | 2022-06-21 15:55:39 -0400 |
commit | 616994487c44d31552409e9f2ebfe676c8934c56 (patch) | |
tree | 81c200341feae0508c54e1b958d0faeb98bfb177 | |
parent | 110462c7ba7b47ef99700d925a8d26e77e881b6a (diff) | |
download | bazarr-616994487c44d31552409e9f2ebfe676c8934c56.tar.gz bazarr-616994487c44d31552409e9f2ebfe676c8934c56.zip |
no log: add default env vars to bazarr config tests
-rw-r--r-- | tests/bazarr/conftest.py | 7 |
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) |