From 8a17027f7292695394ce8e39ce56bd76a9b4b912 Mon Sep 17 00:00:00 2001 From: Michael Mintz Date: Fri, 5 Mar 2021 19:17:57 -0500 Subject: [PATCH] Update the Azure Pipelines script --- azure-pipelines.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index bd36d111..fca99f14 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -8,7 +8,7 @@ jobs: - job: 'Test' pool: - vmImage: 'Ubuntu-18.04' + vmImage: 'Ubuntu-20.04' strategy: matrix: Python2.7: @@ -37,10 +37,10 @@ jobs: - script: python -m pip install seleniumbase displayName: 'Verify install from PyPI' - - script: python -m pip install -r requirements.txt --upgrade - displayName: 'Install dependencies' + #- script: python -m pip install -r requirements.txt --upgrade + # displayName: 'Install dependencies' - - script: python setup.py install + - script: python -m pip install -e . displayName: 'Install SeleniumBase' - script: |