From 582cb347a8238935418615de43bbefca396aa9bd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?F=C3=A9lix=20Voituret?= Date: Fri, 5 Jun 2020 14:55:59 +0200 Subject: [PATCH] fix: add musdb test dev for CI --- .circleci/config.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index a1d8826..5eea9a9 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 + - run: pip install -r requirements.txt && pip install pytest pytest-xdist musdb - 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 + - run: pip install -r requirements.txt && pip install pytest pytest-xdist musdb - run: make test - save_cache: key: models-{{ checksum "spleeter/model/__init__.py" }}