From 6f014efb9754d39f2798bf57627a46555a52f656 Mon Sep 17 00:00:00 2001 From: Adriane Boyd Date: Mon, 16 Nov 2020 10:59:50 +0100 Subject: [PATCH] Install dev requirements before running tests --- azure-pipelines.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index d3a2a53b9..ecefbf81a 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -107,5 +107,7 @@ jobs: pip install dist/$SDIST displayName: 'Install from sdist' - - script: python -m pytest --pyargs spacy + - script: | + pip install -r requirements.txt + python -m pytest --pyargs spacy displayName: 'Run tests'