Skip to content

Commit

Permalink
Minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
bebound committed Aug 7, 2023
1 parent c9951f5 commit db8aac7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -449,12 +449,12 @@ jobs:
echo "== Testing pip install on Python 3.9 =="
docker run \
--rm -v $PYPI_FILES:/mnt/pypi python:3.9 \
/bin/bash -c "ls /mnt/pypi && pip install /mnt/pypi/azure_cli-$CLI_VERSION*whl && az self-test && az --version && sleep 5"
/bin/bash -c "cd /mnt/pypi && ls && pip install -f ./ azure_cli-$CLI_VERSION*whl && az self-test && az --version && sleep 5"
echo "== Testing pip install on Python 3.10 =="
docker run \
--rm -v $PYPI_FILES:/mnt/pypi python:3.10 \
/bin/bash -c "ls /mnt/pypi && pip install /mnt/pypi/azure_cli-$CLI_VERSION*whl && az self-test && az --version && sleep 5"
/bin/bash -c "cd /mnt/pypi && ls && pip install -f ./ azure_cli-$CLI_VERSION*whl && az self-test && az --version && sleep 5"
displayName: 'Test pip Install'
Expand Down

0 comments on commit db8aac7

Please sign in to comment.