dev-python/vcrpy: skip test requiring network access
authorMike Gilbert <floppym@gentoo.org>
Wed, 20 Jun 2018 21:46:20 +0000 (17:46 -0400)
committerMike Gilbert <floppym@gentoo.org>
Wed, 20 Jun 2018 21:46:35 +0000 (17:46 -0400)
Closes: https://bugs.gentoo.org/645514
Package-Manager: Portage-2.3.40_p15, Repoman-2.3.9_p247

dev-python/vcrpy/files/vcrpy-skip-network-tests.patch [new file with mode: 0644]
dev-python/vcrpy/vcrpy-1.11.1.ebuild
dev-python/vcrpy/vcrpy-1.12.0.ebuild

diff --git a/dev-python/vcrpy/files/vcrpy-skip-network-tests.patch b/dev-python/vcrpy/files/vcrpy-skip-network-tests.patch
new file mode 100644 (file)
index 0000000..a1f00aa
--- /dev/null
@@ -0,0 +1,21 @@
+diff --git a/tests/unit/test_stubs.py b/tests/unit/test_stubs.py
+index 7eb0684..a4bc7a1 100644
+--- a/tests/unit/test_stubs.py
++++ b/tests/unit/test_stubs.py
+@@ -1,7 +1,7 @@
+ from vcr.stubs import VCRHTTPSConnection
+ from vcr.compat import mock
+ from vcr.cassette import Cassette
+-
++import pytest
+ class TestVCRConnection(object):
+@@ -11,6 +11,7 @@ class TestVCRConnection(object):
+         assert vcr_connection.real_connection.ssl_version == 'example_ssl_version'
+     @mock.patch('vcr.cassette.Cassette.can_play_response_for', return_value=False)
++    @pytest.mark.skip('requires network access')
+     def testing_connect(*args):
+         vcr_connection = VCRHTTPSConnection('www.google.com')
+         vcr_connection.cassette = Cassette('test', record_mode='all')
index b50e9d02784cdfc6ba5233d2d6341609316b9378..0bc4604553ed78c33073d702fa017241d99c8563 100644 (file)
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -36,6 +36,10 @@ DEPEND="
                dev-python/pytest-httpbin[${PYTHON_USEDEP}]
        )"
 
+PATCHES=(
+       "${FILESDIR}"/vcrpy-skip-network-tests.patch
+)
+
 python_test() {
        py.test -vv -x tests/unit || die
 }
index adfcee1807df7ef67e8c4f73aa9f54eb4313e24a..2676c410973366e27f67cbb39fa028790360547b 100644 (file)
@@ -36,6 +36,10 @@ DEPEND="
                dev-python/pytest-httpbin[${PYTHON_USEDEP}]
        )"
 
+PATCHES=(
+       "${FILESDIR}"/vcrpy-skip-network-tests.patch
+)
+
 python_test() {
        py.test -vv -x tests/unit || die
 }