summaryrefslogtreecommitdiff
path: root/.azure-pipelines
diff options
context:
space:
mode:
authorBrian Cristante <brcrista@microsoft.com>2018-10-05 16:01:08 -0400
committerBrian Cristante <brcrista@microsoft.com>2018-10-05 16:01:08 -0400
commit1b67afe99cc2c0f41e1181d57014d37d57bc0337 (patch)
tree7eabf2f6ec45152afbc00d7ced245d77eff840d5 /.azure-pipelines
parent5cbcb725542ae47662fffe67db85b48d647f151f (diff)
downloadpip-1b67afe99cc2c0f41e1181d57014d37d57bc0337.tar.gz
just install tox explicitly
Diffstat (limited to '.azure-pipelines')
-rw-r--r--.azure-pipelines/steps/run-tests.yml3
1 files changed, 2 insertions, 1 deletions
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