From 4f7fce2bc0480cd2818e038466e943843f5fbfac Mon Sep 17 00:00:00 2001 From: "narrieta@microsoft" Date: Wed, 15 Jan 2025 08:17:57 -0800 Subject: [PATCH] TEST --- .github/workflows/ci_pr.yml | 34 +++++++++++++++++----------------- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/.github/workflows/ci_pr.yml b/.github/workflows/ci_pr.yml index 806a63aab..67137a3fd 100644 --- a/.github/workflows/ci_pr.yml +++ b/.github/workflows/ci_pr.yml @@ -19,17 +19,17 @@ jobs: use_virtual_environment: true - python-version: "3.4" use_virtual_environment: true - - python-version: "3.5" - # workaround found in https://github.com/actions/setup-python/issues/866 - # for issue "[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:728)" on Python 3.5 - pip_trusted_host: "pypi.python.org pypi.org files.pythonhosted.org" - - python-version: "3.6" - - python-version: "3.7" - - python-version: "3.8" - - python-version: "3.9" - additional-nose-opts: "--with-coverage --cover-erase --cover-inclusive --cover-branches --cover-package=azurelinuxagent" - - python-version: "3.10" - - python-version: "3.11" +# - python-version: "3.5" +# # workaround found in https://github.com/actions/setup-python/issues/866 +# # for issue "[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:728)" on Python 3.5 +# pip_trusted_host: "pypi.python.org pypi.org files.pythonhosted.org" +# - python-version: "3.6" +# - python-version: "3.7" +# - python-version: "3.8" +# - python-version: "3.9" +# additional-nose-opts: "--with-coverage --cover-erase --cover-inclusive --cover-branches --cover-package=azurelinuxagent" +# - python-version: "3.10" +# - python-version: "3.11" name: "Python ${{ matrix.python-version }} Unit Tests" runs-on: ubuntu-20.04 @@ -64,12 +64,12 @@ jobs: sudo apt-get install -y curl bzip2 sudo curl -sSf --retry 5 -o /tmp/python-${{ matrix.python-version }}.tar.bz2 https://dcrdata.blob.core.windows.net/python/python-${{ matrix.python-version }}.tar.bz2 sudo tar xjf /tmp/python-${{ matrix.python-version }}.tar.bz2 --directory / - # - # The virtual environments for 2.6 and 3.4 have dependencies on OpenSSL 1.0, which is not available beyond Ubuntu 16. We use this script to patch the environments. - # - if [[ "${{ matrix.python-version }}" =~ ^2\.6|3\.4$ ]]; then - sudo ./tests/python_eol/patch_python_venv.sh "${{ matrix.python-version }}" - fi +# # +# # The virtual environments for 2.6 and 3.4 have dependencies on OpenSSL 1.0, which is not available beyond Ubuntu 16. We use this script to patch the environments. +# # +# if [[ "${{ matrix.python-version }}" =~ ^2\.6|3\.4$ ]]; then +# sudo ./tests/python_eol/patch_python_venv.sh "${{ matrix.python-version }}" +# fi - name: Execute Unit Tests run: |