Skip to content

Commit

Permalink
remove more stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
scbedd committed Apr 11, 2024
1 parent f7c6fcb commit 5b4bd9a
Showing 1 changed file with 6 additions and 14 deletions.
20 changes: 6 additions & 14 deletions .azure-pipelines/client.yml
Original file line number Diff line number Diff line change
Expand Up @@ -115,21 +115,13 @@ extends:
versionSpec: '$(PythonVersion)'

- script: |
echo "Prepending PATH environment variable with directory: /usr/local/bin"
echo "##vso[task.prependpath]/usr/local/bin"
export PYTHON_SHORT_VER=`echo $(PythonVersion) | cut -d . -f 1,2`
echo "Prepending PATH environment variable with directory: $HOME/Library/Python/$PYTHON_SHORT_VER/bin"
echo "##vso[task.prependpath]$HOME/Library/Python/$PYTHON_SHORT_VER/bin"
displayName: 'Prepare PATH'
- script: |
$(PythonBin) -m pip --version
$(PythonBin) -m pip install --user -r dev_requirements.txt
python -m pip --version
python -m pip install --user -r dev_requirements.txt
displayName: 'Install dependencies'
- bash: |
set -o errexit
$(PythonBin) -m pip install cibuildwheel==2.16.2 --force
python -m pip install cibuildwheel==2.16.2 --force
displayName: Install cibuildwheel 2.16.2
- pwsh: |
Expand All @@ -144,9 +136,9 @@ extends:
displayName: 'Check output'

- script: |
$(PythonBin) -m pip install --ignore-installed ./dist/*.whl
$(PythonBin) -m pip install pytest==6.2.4 --force
$(PythonBin) -m pip install pytest-asyncio==0.12.0 --force
python -m pip install --ignore-installed ./dist/*.whl
python -m pip install pytest==6.2.4 --force
python -m pip install pytest-asyncio==0.12.0 --force
pytest tests --doctest-modules --junitxml=junit/test-results-c.xml
pytest samples --doctest-modules --junitxml=junit/test-results-live.xml
displayName: 'Run tests'
Expand Down

0 comments on commit 5b4bd9a

Please sign in to comment.