From 1b67afe99cc2c0f41e1181d57014d37d57bc0337 Mon Sep 17 00:00:00 2001 From: Brian Cristante Date: Fri, 5 Oct 2018 16:01:08 -0400 Subject: [PATCH] just install tox explicitly --- .azure-pipelines/steps/run-tests.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.azure-pipelines/steps/run-tests.yml b/.azure-pipelines/steps/run-tests.yml index 588445b99..95e7b388f 100644 --- a/.azure-pipelines/steps/run-tests.yml +++ b/.azure-pipelines/steps/run-tests.yml @@ -4,7 +4,8 @@ steps: inputs: versionSpec: '$(python.version)' -- template: install-dependencies.yml +- bash: pip install --upgrade setuptools tox + displayName: Install Tox - script: tox -e py -- -m unit --junit-xml=junit/unit-test.xml displayName: Tox run unit tests