Migrate analyzer_pipeline_test to pytest

This commit is contained in:
jo 2021-06-04 14:06:02 +02:00
parent 23d02bf959
commit d94193ce57
2 changed files with 35 additions and 50 deletions

View file

@ -1,10 +1,12 @@
import pytest
import os
import tempfile
import shutil
import tempfile
import pytest
AUDIO_FILE = "tests/test_data/44100Hz-16bit-mono.mp3"
AUDIO_FILENAME = os.path.basename(AUDIO_FILE)
AUDIO_IMPORT_DEST = "Test Artist/Test Album/44100Hz-16bit-mono.mp3"
@pytest.fixture()