test(analyzer): set test logging level to trace
This commit is contained in:
parent
88dcd13fc8
commit
7c354f52f4
|
@ -1,11 +1,13 @@
|
||||||
import os
|
|
||||||
import shutil
|
import shutil
|
||||||
from tempfile import TemporaryDirectory
|
from tempfile import TemporaryDirectory
|
||||||
|
|
||||||
import pytest
|
import pytest
|
||||||
|
from libretime_shared.logging import TRACE, setup_logger
|
||||||
|
|
||||||
from .fixtures import fixtures_path
|
from .fixtures import fixtures_path
|
||||||
|
|
||||||
|
setup_logger(TRACE)
|
||||||
|
|
||||||
AUDIO_FILENAME = "s1-stereo-tagged.mp3"
|
AUDIO_FILENAME = "s1-stereo-tagged.mp3"
|
||||||
AUDIO_FILE = fixtures_path / AUDIO_FILENAME
|
AUDIO_FILE = fixtures_path / AUDIO_FILENAME
|
||||||
AUDIO_IMPORT_DEST = f"Test Artist/Test Album/{AUDIO_FILENAME}"
|
AUDIO_IMPORT_DEST = f"Test Artist/Test Album/{AUDIO_FILENAME}"
|
||||||
|
|
Loading…
Reference in New Issue