这是我的管道 yaml 文件的 pytest 部分。
steps:
#test
- task: UsePythonVersion@0
inputs:
versionSpec: '$(python.version)'
displayName: 'Use Python $(python.version)'
#test
- script: |
python -m pip install --upgrade pip
python -m pip install wheel
pip install -r requirements.txt
condition: ne(variables.CACHE_RESTORED, 'true')
displayName: 'Install dependencies'
#test
- script: |
python -m spacy download de_core_news_sm
python -m spacy download de_core_news_md
#test
- script: |
pip install pytest pytest-azurepipelines
pytest
displayName: 'pytest'
文件 tat_core/criteria/checks/zw2n_test.py 在我的本地存储库副本中不存在。我删了它。
如何告诉管道该文件不存在并且不必运行测试?我假设路径 /opt/hostedtoolscache 指示了某种缓存。我可以清空这个缓存吗?