summaryrefslogtreecommitdiff
path: root/.azure-pipelines
diff options
context:
space:
mode:
authorTzu-ping Chung <uranusjr@gmail.com>2020-02-27 17:35:20 +0800
committerTzu-ping Chung <uranusjr@gmail.com>2020-02-27 17:43:14 +0800
commit9c57a6b8987003f10d464d273d15195a2593e0f3 (patch)
treef28765da1753217e08b7b692577384773b15d5af /.azure-pipelines
parent9e884a46f632815826be51a55eb7a285b351f513 (diff)
downloadpip-9c57a6b8987003f10d464d273d15195a2593e0f3.tar.gz
Make tests relying virtualenv semantics pass
Diffstat (limited to '.azure-pipelines')
-rw-r--r--.azure-pipelines/steps/run-tests-windows.yml2
-rw-r--r--.azure-pipelines/steps/run-tests.yml2
2 files changed, 2 insertions, 2 deletions
diff --git a/.azure-pipelines/steps/run-tests-windows.yml b/.azure-pipelines/steps/run-tests-windows.yml
index 4908c0ec7..3832e4662 100644
--- a/.azure-pipelines/steps/run-tests-windows.yml
+++ b/.azure-pipelines/steps/run-tests-windows.yml
@@ -25,7 +25,7 @@ steps:
Set-Acl "R:\Temp" $acl
displayName: Set RAMDisk Permissions
-- bash: pip install --upgrade setuptools tox virtualenv
+- bash: pip install --upgrade 'virtualenv<20' setuptools tox
displayName: Install Tox
- script: tox -e py -- -m unit -n auto --junit-xml=junit/unit-test.xml
diff --git a/.azure-pipelines/steps/run-tests.yml b/.azure-pipelines/steps/run-tests.yml
index 64163a5be..11ea22727 100644
--- a/.azure-pipelines/steps/run-tests.yml
+++ b/.azure-pipelines/steps/run-tests.yml
@@ -4,7 +4,7 @@ steps:
inputs:
versionSpec: '$(python.version)'
-- bash: pip install --upgrade setuptools tox
+- bash: pip install --upgrade 'virtualenv<20' setuptools tox
displayName: Install Tox
- script: tox -e py -- -m unit -n auto --junit-xml=junit/unit-test.xml