diff --git a/.circleci/config.yml b/.circleci/config.yml index 0a257a6..fbad562 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -88,7 +88,7 @@ jobs: command: pip install twine && twine upload dist/* workflows: version: 2 - test-and-deploy: + spleeter-workflow: jobs: - test-3.6 - test-3.7 diff --git a/tests/test_separator.py b/tests/test_separator.py index 3115314..15493cd 100644 --- a/tests/test_separator.py +++ b/tests/test_separator.py @@ -25,7 +25,7 @@ def test_separate(): """ Test separation from raw data. """ adapter = get_default_audio_adapter() waveform, _ = adapter.load(TEST_AUDIO_DESCRIPTOR) - for configuration, instruments in TEST_CONFIGURATIONS: + for configuration, instruments in TEST_CONFIGURATIONS.items(): separator = Separator(configuration) prediction = separator.separate(waveform) assert len(prediction) == 2 @@ -35,7 +35,7 @@ def test_separate(): def test_separate_to_file(): """ Test file based separation. """ - for configuration, instruments in TEST_CONFIGURATIONS: + for configuration, instruments in TEST_CONFIGURATIONS.items(): separator = Separator(configuration) with TemporaryDirectory() as directory: separator.separate_to_file(