From de718e7125c99c77f85a3e00da3dee1adfe8f014 Mon Sep 17 00:00:00 2001 From: Clinton Hall Date: Fri, 8 Nov 2019 13:27:11 +1300 Subject: [PATCH] Optimize CI checks --- azure-pipelines.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 81d458d7..5a5a7d1c 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -23,9 +23,12 @@ jobs: python.version: '3.7' Python38: python.version: '3.8' - maxParallel: 4 + maxParallel: 5 steps: + #Install ffmpeg (and any common tools) outside of Python version tasks + - script: sudo apt-get install ffmpeg + displayName: 'Install ffmpeg' #- script: | # Make sure all packages are pulled from latest #sudo apt-get update @@ -70,9 +73,6 @@ jobs: - script: python -m pip install --upgrade pip displayName: 'Install dependencies' - - script: sudo apt-get install ffmpeg - displayName: 'Install ffmpeg' - - script: | pip install pytest pytest tests --doctest-modules --junitxml=junit/test-results.xml