From 923ea7448b5e819d73272bc4e43e8880a8598a07 Mon Sep 17 00:00:00 2001 From: Paul O'Leary McCann Date: Thu, 29 Dec 2022 16:54:28 +0900 Subject: [PATCH] Remove debugging output / install step --- .github/azure-steps.yml | 9 --------- 1 file changed, 9 deletions(-) diff --git a/.github/azure-steps.yml b/.github/azure-steps.yml index 85078268c..d0db75f9a 100644 --- a/.github/azure-steps.yml +++ b/.github/azure-steps.yml @@ -16,9 +16,6 @@ steps: - script: | python -m pip install -U build pip setuptools - echo "----- REQUIREMENTS -----" - cat requirements.txt - echo "----- END REQUIREMENTS -----" python -m pip install -U -r requirements.txt displayName: "Install dependencies" @@ -102,16 +99,10 @@ steps: # condition: eq(variables['python_version'], '3.8') - script: | - cat requirements.txt python -m pip install -U -r requirements.txt - python -m pip uninstall -y spacy-legacy - python -m pip install 'git+https://github.com/polm/spacy-legacy.git@feature/entity-linker-component-v1#egg=spacy-legacy' - python -m pip freeze displayName: "Install test requirements" - script: | - # TODO REMOVE - temp for testing - python -m pip freeze python -m pytest --pyargs spacy -W error displayName: "Run CPU tests"