diff options
author | Nirbheek Chauhan <nirbheek@centricular.com> | 2019-07-24 18:25:19 +0530 |
---|---|---|
committer | Nirbheek Chauhan <nirbheek@centricular.com> | 2019-07-24 18:25:19 +0530 |
commit | da0558723d7dda9a6597380a7ed5b73502f46d4f (patch) | |
tree | 502d916cfd405362d1bacce79e098bee3cb414e1 | |
parent | f2e018c7f32b56679adf62c08f58bc1d9b9daf87 (diff) | |
download | meson-nirbheek/fix-pip-warning-powershell-error.tar.gz |
ci: Fix failures in vs2019 jobs on Azurenirbheek/fix-pip-warning-powershell-error
pip warns about being out of date and powershell interprets that as an
error because reasons.
Found in https://github.com/mesonbuild/meson/pull/5687#issuecomment-514268525
-rw-r--r-- | ci/azure-steps.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ci/azure-steps.yml b/ci/azure-steps.yml index 36e6fb437..d2e984f15 100644 --- a/ci/azure-steps.yml +++ b/ci/azure-steps.yml @@ -155,7 +155,7 @@ steps: python --version # Needed for running unit tests in parallel. - python -m pip install --upgrade pytest-xdist + python -m pip --disable-pip-version-check install --upgrade pytest-xdist echo "" |