From 7dd17d3d4e9494d10fd51865d9dad0528b892c07 Mon Sep 17 00:00:00 2001 From: SeanNaren Date: Wed, 17 Feb 2021 17:02:22 +0000 Subject: [PATCH] Clean up mess --- azure-pipelines.yml | 17 ++++++----------- 1 file changed, 6 insertions(+), 11 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 722f276577..cf2fcf643c 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -64,11 +64,6 @@ jobs: - bash: | # Temporary fix till DeepSpeed release pip install deepspeed@git+https://github.com/microsoft/DeepSpeed@ec8b1cb - # Update path to find ninja installation - export PATH=$PATH:/home/AzDevOps_azpcontainer/.local/bin - echo $PATH - whereis ninja - which ninja displayName: 'Install DeepSpeed' - script: | @@ -81,16 +76,16 @@ jobs: ls -l legacy/checkpoints/ displayName: 'Get legacy checkpoints' - - bash: | - export PATH=$PATH:/home/AzDevOps_azpcontainer/.local/bin - which ninja - sh tests/special_tests.sh - displayName: 'Testing: special' - - script: | python -m coverage run --source pytorch_lightning -m pytest pytorch_lightning tests -v --durations=50 displayName: 'Testing: standard' + - bash: | + # Required for Ninja binary for building extensions, which is installed at this location + export PATH=$PATH:/home/AzDevOps_azpcontainer/.local/bin + sh tests/special_tests.sh + displayName: 'Testing: special' + - bash: | python -m coverage report python -m coverage xml