From ec53102ec9c0f23ff388b8f887fea6a0555491aa Mon Sep 17 00:00:00 2001 From: ilayn Date: Mon, 14 Mar 2022 21:45:28 +0100 Subject: [PATCH 1/2] CI:Pin pytest version to 7.0.1 on Azure Pipelines [skip actions] [skip circle] --- azure-pipelines.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 2bfd9501bab4..78d93ff89eb0 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -172,7 +172,7 @@ stages: curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py && \ python3.8 get-pip.py && \ pip3 --version && \ - pip3 install setuptools==59.6.0 wheel numpy==1.18.5 cython==0.29.18 pybind11 pytest pytest-timeout pytest-xdist pytest-env pytest-cov Pillow mpmath pythran==0.10.0 --user && \ + pip3 install setuptools==59.6.0 wheel numpy==1.18.5 cython==0.29.18 pybind11 pytest==7.0.1 pytest-timeout pytest-xdist pytest-env pytest-cov Pillow mpmath pythran==0.10.0 --user && \ apt-get -y install gcc-5 g++-5 gfortran-8 wget && \ cd .. && \ mkdir openblas && cd openblas && \ @@ -285,7 +285,7 @@ stages: Pillow pybind11 pythran==0.10.0 - pytest + pytest==7.0.1 pytest-cov pytest-env pytest-timeout From dbba8149b7bb527f31cfb79e8bed8dcdf32f1299 Mon Sep 17 00:00:00 2001 From: ilayn Date: Tue, 15 Mar 2022 13:33:14 +0100 Subject: [PATCH 2/2] CI:Pin pytest version to 7.0.1 on Azure-Travis template --- ci/azure-travis-template.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/azure-travis-template.yaml b/ci/azure-travis-template.yaml index 3f59647820d5..92139e2bc249 100644 --- a/ci/azure-travis-template.yaml +++ b/ci/azure-travis-template.yaml @@ -72,7 +72,7 @@ steps: mpmath pythran pybind11 - pytest + pytest==7.0.1 pytest-xdist displayName: 'Install common python dependencies' - ${{ if eq(parameters.test_mode, 'full') }}: