From 91ac33fdff290edfdbdc47ce381fc294446c6024 Mon Sep 17 00:00:00 2001 From: Paul Brossier Date: Wed, 26 Sep 2018 11:41:11 +0200 Subject: [PATCH] .circleci/config.yml: install pip requirements --- .circleci/config.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index 49d77715..24e70de6 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -4,6 +4,11 @@ apt-run: &apt-install sudo apt-get update sudo apt-get -y install make sox pkg-config libavcodec-dev libavformat-dev libavresample-dev libavutil-dev libsndfile1-dev libsamplerate-dev +pip-install: &pip-install + name: Install pip dependencies + command: | + pip install -r requirements.txt + build-wheel: &build-wheel name: Build python wheel command: | @@ -29,6 +34,7 @@ jobs: steps: - checkout - run: *apt-install + - run: *pip-install - run: *build-wheel - run: *install-wheel - run: *test-nose2 -- 2.11.0