From 53a3523910704e6d6801e8ba474b6a3b4db63a57 Mon Sep 17 00:00:00 2001 From: Adriane Boyd Date: Tue, 2 Nov 2021 14:24:54 +0100 Subject: [PATCH] Revert "Temporarily ignore W095 in assemble CLI CI test (#9460)" This reverts commit 8db574e0b55d00196be50eebc56775a2854c8795. --- .github/azure-steps.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/azure-steps.yml b/.github/azure-steps.yml index 8df593bb7..3460bccea 100644 --- a/.github/azure-steps.yml +++ b/.github/azure-steps.yml @@ -98,8 +98,7 @@ steps: - script: | python -c "import spacy; config = spacy.util.load_config('ner.cfg'); config['components']['ner'] = {'source': 'ca_core_news_sm'}; config.to_disk('ner_source_sm.cfg')" - # temporarily ignore W095 - PYTHONWARNINGS="error,ignore:[W095]:UserWarning,ignore::DeprecationWarning" python -m spacy assemble ner_source_sm.cfg output_dir + PYTHONWARNINGS="error,ignore::DeprecationWarning" python -m spacy assemble ner_source_sm.cfg output_dir displayName: 'Test assemble CLI' condition: eq(variables['python_version'], '3.8')