From 423ccaa40b94439645933d920ebd51b893faf9d2 Mon Sep 17 00:00:00 2001 From: Jair Henrique Date: Mon, 31 Oct 2022 21:52:55 -0300 Subject: [PATCH] Set fail-fast to false on CI --- .github/workflows/main.yml | 1 + tests/integration/test_httplib2.py | 4 ---- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 052e845..af11e7a 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -12,6 +12,7 @@ jobs: build: runs-on: ubuntu-latest strategy: + fail-fast: false matrix: python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "pypy-3.8"] diff --git a/tests/integration/test_httplib2.py b/tests/integration/test_httplib2.py index 59cfc76..2d5ac09 100644 --- a/tests/integration/test_httplib2.py +++ b/tests/integration/test_httplib2.py @@ -1,7 +1,5 @@ # -*- coding: utf-8 -*- """Integration tests with httplib2""" - -import sys from urllib.parse import urlencode import pytest @@ -19,8 +17,6 @@ def http(): with the certificate replaced by the httpbin one. """ kwargs = {"ca_certs": pytest_httpbin.certs.where()} - if sys.version_info[:2] in [(2, 7), (3, 7)]: - kwargs["disable_ssl_certificate_validation"] = True return httplib2.Http(**kwargs)