Typo in word only

This commit is contained in:
Marek Wolan
2023-07-11 08:14:08 +00:00
parent 65d91e01a7
commit ebf07ce5c1

View File

@@ -40,49 +40,49 @@ stages:
- stage: Test
jobs:
- ${{ each item in parameters.matrix }}:
${{ if or(eq(variables['Build.Reason'], 'PullRequest'), item.value.on_pr) }}:
- job: ${{ item.Key }}
pool:
vmImage: ${{ item.Value.img }}
steps:
- task: UsePythonVersion@0
inputs:
versionSpec: ${{ item.Value.py }}
displayName: 'Use Python ${{ item.Value.py }}'
${{ if or(eq(variables['Build.Reason'], 'PullRequest'), item.value.only_pr) }}:
- job: ${{ item.Key }}
pool:
vmImage: ${{ item.Value.img }}
steps:
- task: UsePythonVersion@0
inputs:
versionSpec: ${{ item.Value.py }}
displayName: 'Use Python ${{ item.Value.py }}'
- script: |
python -m pip install pre-commit
pre-commit install
pre-commit run --all-files
displayName: 'Run pre-commits'
- script: |
python -m pip install pre-commit
pre-commit install
pre-commit run --all-files
displayName: 'Run pre-commits'
- script: |
python -m pip install --upgrade pip==23.0.1
pip install wheel==0.38.4 --upgrade
pip install setuptools==66 --upgrade
pip install build==0.10.0
pip install pytest-azurepipelines
displayName: 'Install build dependencies'
- script: |
python -m pip install --upgrade pip==23.0.1
pip install wheel==0.38.4 --upgrade
pip install setuptools==66 --upgrade
pip install build==0.10.0
pip install pytest-azurepipelines
displayName: 'Install build dependencies'
- script: |
python -m build
displayName: 'Build PrimAITE'
- script: |
python -m build
displayName: 'Build PrimAITE'
- script: |
PRIMAITE_WHEEL=$(ls ./dist/primaite*.whl)
python -m pip install $PRIMAITE_WHEEL[dev]
displayName: 'Install PrimAITE'
condition: or(eq( variables['Agent.OS'], 'Linux' ), eq( variables['Agent.OS'], 'Darwin' ))
- script: |
PRIMAITE_WHEEL=$(ls ./dist/primaite*.whl)
python -m pip install $PRIMAITE_WHEEL[dev]
displayName: 'Install PrimAITE'
condition: or(eq( variables['Agent.OS'], 'Linux' ), eq( variables['Agent.OS'], 'Darwin' ))
- script: |
forfiles /p dist\ /m *.whl /c "cmd /c python -m pip install @file[dev]"
displayName: 'Install PrimAITE'
condition: eq( variables['Agent.OS'], 'Windows_NT' )
- script: |
forfiles /p dist\ /m *.whl /c "cmd /c python -m pip install @file[dev]"
displayName: 'Install PrimAITE'
condition: eq( variables['Agent.OS'], 'Windows_NT' )
- script: |
primaite setup
displayName: 'Perform PrimAITE Setup'
- script: |
primaite setup
displayName: 'Perform PrimAITE Setup'
- script: |
pytest tests/
displayName: 'Run tests'
- script: |
pytest tests/
displayName: 'Run tests'