Update cpu_unit_tests_linux.yml

This commit is contained in:
Miguel González-Fierro 2019-07-22 16:16:45 +01:00 коммит произвёл GitHub
Родитель fe9ce0c026
Коммит f60d4a40fa
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 13 добавлений и 11 удалений

Просмотреть файл

@ -22,22 +22,24 @@ jobs:
echo "##vso[task.prependpath]/data/anaconda/bin"
displayName: Add Conda to PATH
- bash: |
python tools/generate_conda_file.py
conda env create -n nlp_cpu -f nlp_cpu.yaml
displayName: 'Creating Conda Environment with dependencies'
# Uncomment if needed
# - bash: |
# python tools/generate_conda_file.py
# conda env create -n nlp_cpu -f nlp_cpu.yaml
# displayName: 'Creating Conda Environment with dependencies'
- bash: |
source activate nlp_cpu
conda activate nlp_cpu
pytest tests/unit -m "not notebooks and not gpu" --junitxml=junit/test-unitttest.xml
displayName: 'Run Unit tests'
- bash: |
echo Remove Conda Environment
conda remove -n nlp_cpu --all -q --force -y
echo Done Cleanup
displayName: 'Cleanup Task'
condition: always()
# Uncomment if needed
# - bash: |
# echo Remove Conda Environment
# conda remove -n nlp_cpu --all -q --force -y
# echo Done Cleanup
# displayName: 'Cleanup Task'
# condition: always()
- task: PublishTestResults@2
inputs: