1
0
mirror of https://github.com/kevin1024/vcrpy.git synced 2025-12-08 16:53:23 +00:00

Set fail-fast to false on CI

This commit is contained in:
Jair Henrique
2022-10-31 21:52:55 -03:00
parent 526fdbb194
commit 423ccaa40b
2 changed files with 1 additions and 4 deletions

View File

@@ -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"]

View File

@@ -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)