From dca316ae7db17c6932ba762d1175499ada4a077b Mon Sep 17 00:00:00 2001 From: clinton-hall Date: Wed, 27 Mar 2019 09:52:32 +1300 Subject: [PATCH] fix ffmpeg install --- azure-pipelines.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index b5e49ca9..b4eb0af1 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -30,9 +30,11 @@ jobs: architecture: 'x64' - script: python -m pip install --upgrade pip - apt-get install -y ffmpeg displayName: 'Install dependencies' + - script: apt-get install -y ffmpeg + displayName: 'Install ffmpeg' + - script: | pip install pytest pytest tests --doctest-modules --junitxml=junit/test-results.xml