From 9dcf220241b832faf36df7834ccdc789d965ba17 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?F=C3=A9lix=20Voituret?= Date: Fri, 5 Jun 2020 14:56:30 +0200 Subject: [PATCH] fix: add museval dep for CI testing --- .circleci/config.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 5eea9a9..5d4acc1 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -12,7 +12,7 @@ jobs: - restore_cache: key: models-{{ checksum "spleeter/model/__init__.py" }} - run: apt-get update && apt-get install -y ffmpeg - - run: pip install -r requirements.txt && pip install pytest pytest-xdist musdb + - run: pip install -r requirements.txt && pip install pytest pytest-xdist musdb museval - run: make test - save_cache: key: models-{{ checksum "spleeter/model/__init__.py" }} @@ -30,7 +30,7 @@ jobs: - restore_cache: key: models-{{ checksum "spleeter/model/__init__.py" }} - run: apt-get update && apt-get install -y ffmpeg - - run: pip install -r requirements.txt && pip install pytest pytest-xdist musdb + - run: pip install -r requirements.txt && pip install pytest pytest-xdist musdb museval - run: make test - save_cache: key: models-{{ checksum "spleeter/model/__init__.py" }}