From d2c82d05c75852f7c21548e75454ad565a3270d0 Mon Sep 17 00:00:00 2001 From: budtmo Date: Mon, 21 Jun 2021 10:47:09 +0200 Subject: [PATCH] Removed matrix from pipeline --- pipelines/test-pipeline.yml | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/pipelines/test-pipeline.yml b/pipelines/test-pipeline.yml index 69b57ae..d9b777a 100644 --- a/pipelines/test-pipeline.yml +++ b/pipelines/test-pipeline.yml @@ -16,16 +16,11 @@ jobs: - job: build_and_test pool: vmImage: ubuntu-20.04 - strategy: - maxParallel: 1 - matrix: - python35: - python.version: '3.5' steps: - task: UsePythonVersion@0 inputs: - versionSpec: '$(python.version)' - displayName: 'Use Python $(python.version)' + versionSpec: '3.5' + displayName: 'Use Python 3.5' - script: pip install -r requirements.txt displayName: 'Install pip packages' - script: ./release.sh test 7.1.1 $(app_version)