From 6047e19e1dc9cc249c0b412be46368c491f1906e Mon Sep 17 00:00:00 2001 From: Erik Crank Date: Wed, 7 May 2025 09:26:44 -0500 Subject: [PATCH] Changed py -3 to python --- azure-pipelines.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 3b66785..b41ffd6 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -15,14 +15,13 @@ jobs: pool: name: nitsm-python-test - # py -3 indicates the latest python version installed on the system steps: - script: | - py -3 -m pip install --upgrade pip + python -m pip install --upgrade pip displayName: 'Upgrade pip' - script: | - py -3 -m pip install --upgrade tox + python -m pip install --upgrade tox displayName: 'Install or upgrade tox' - task: PowerShell@2