diff options
author | Vitiko <[email protected]> | 2022-01-17 20:23:11 -0400 |
---|---|---|
committer | Vitiko <[email protected]> | 2022-01-23 20:31:01 -0400 |
commit | ddacff3bdccfca690902ad36c3c1c1a4975879b7 (patch) | |
tree | dca3265388cb7ac5b7682902b2fce4c890464f34 /tests | |
parent | d8d2300980ca69a4ae6511cb49a6dc548c0da793 (diff) | |
download | bazarr-ddacff3bdccfca690902ad36c3c1c1a4975879b7.tar.gz bazarr-ddacff3bdccfca690902ad36c3c1c1a4975879b7.zip |
no log: update conftest.py
Diffstat (limited to 'tests')
-rw-r--r-- | tests/subliminal_patch/conftest.py | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/tests/subliminal_patch/conftest.py b/tests/subliminal_patch/conftest.py index e1e35f661..e9c539a62 100644 --- a/tests/subliminal_patch/conftest.py +++ b/tests/subliminal_patch/conftest.py @@ -1,11 +1,17 @@ # -*- coding: utf-8 -*- -import pytest +import logging import os +import pytest + from subliminal_patch.core import Movie, Episode +logging.getLogger("vcr").setLevel(logging.WARNING) +logging.getLogger("rebulk").setLevel(logging.WARNING) + + @pytest.fixture(scope="module") def vcr_cassette_dir(request): return os.path.join("tests/subliminal_patch/cassettes", request.module.__name__) |