summaryrefslogtreecommitdiff
path: root/.azure-pipelines
diff options
context:
space:
mode:
authorBrian Cristante <brcrista@microsoft.com>2018-10-01 08:29:19 -0400
committerBrian Cristante <brcrista@microsoft.com>2018-10-01 08:29:19 -0400
commit69c74f916e7e588a0c314fc7a768e83a5a6f0aec (patch)
tree13db10d633393968028245b5510aa3fce79fc578 /.azure-pipelines
parentfe76e4f80e9d21bfd5cde46572189fd9a95c7a36 (diff)
downloadpip-69c74f916e7e588a0c314fc7a768e83a5a6f0aec.tar.gz
delete install-dependencies.yml and fix build
Diffstat (limited to '.azure-pipelines')
-rw-r--r--.azure-pipelines/jobs/test.yml3
-rw-r--r--.azure-pipelines/steps/install-dependencies.yml3
-rw-r--r--.azure-pipelines/steps/run-tests-windows.yml3
3 files changed, 4 insertions, 5 deletions
diff --git a/.azure-pipelines/jobs/test.yml b/.azure-pipelines/jobs/test.yml
index 8bd2192bb..bb113a3b5 100644
--- a/.azure-pipelines/jobs/test.yml
+++ b/.azure-pipelines/jobs/test.yml
@@ -32,7 +32,8 @@ jobs:
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
diff --git a/.azure-pipelines/steps/install-dependencies.yml b/.azure-pipelines/steps/install-dependencies.yml
deleted file mode 100644
index 22c15e9c9..000000000
--- a/.azure-pipelines/steps/install-dependencies.yml
+++ /dev/null
@@ -1,3 +0,0 @@
-steps:
-- bash: pip install --upgrade setuptools tox
- displayName: Install Tox \ No newline at end of file
diff --git a/.azure-pipelines/steps/run-tests-windows.yml b/.azure-pipelines/steps/run-tests-windows.yml
index f01edbe34..6ce5d1cc0 100644
--- a/.azure-pipelines/steps/run-tests-windows.yml
+++ b/.azure-pipelines/steps/run-tests-windows.yml
@@ -8,7 +8,8 @@ steps:
versionSpec: '$(python.version)'
architecture: '$(python.architecture)'
-- template: install-dependencies.yml
+- bash: pip install --upgrade setuptools tox
+ displayName: Install Tox
- script: tox -e py -- -m unit -n 3 --junit-xml=junit/unit-test.xml
displayName: Tox run unit tests