python3-betamax: Skip ptests accessing network

cassette fixtures are not installed in ptests so skip
test_requests_with_json_body

Signed-off-by: Khem Raj <raj.khem@gmail.com>
This commit is contained in:
Khem Raj 2025-12-09 23:31:01 -08:00
parent a145ddffde
commit ec4c278bc9
No known key found for this signature in database
GPG Key ID: BB053355919D3314
2 changed files with 41 additions and 0 deletions

View File

@ -0,0 +1,40 @@
From a7f1d08e073e60167c6ac9c72a0110c65f87a937 Mon Sep 17 00:00:00 2001
From: Khem Raj <raj.khem@gmail.com>
Date: Tue, 9 Dec 2025 23:04:45 -0800
Subject: [PATCH] test_placeholders: use pytest-vcr or skip if cassette missing
Upstream-Status: Inappropriate [OE ptest specific]
Signed-off-by: Khem Raj <raj.khem@gmail.com>
---
tests/integration/test_placeholders.py | 5 +++++
1 file changed, 5 insertions(+)
--- a/tests/integration/test_placeholders.py
+++ b/tests/integration/test_placeholders.py
@@ -1,3 +1,6 @@
+import pytest
+import os
+
from betamax import Betamax
from betamax.cassette import Cassette
@@ -18,6 +21,8 @@ class TestPlaceholders(IntegrationHelper
super(TestPlaceholders, self).tearDown()
Cassette.default_cassette_options = original_cassette_options
+ @pytest.mark.skipif(not os.path.exists('tests/cassettes/test_placeholders.json'),
+ reason="Cassette fixture missing")
def test_placeholders_work(self):
placeholders = Cassette.default_cassette_options['placeholders']
assert placeholders == [{
--- a/tests/regression/test_requests_2_11_body_matcher.py
+++ b/tests/regression/test_requests_2_11_body_matcher.py
@@ -13,6 +13,7 @@ class TestRequests211BodyMatcher(unittes
@pytest.mark.skipif(requests.__build__ < 0x020401,
reason="No json keyword.")
+ @pytest.mark.skip(reason="Requires cassette fixture not available in ptest")
def test_requests_with_json_body(self):
s = requests.Session()
with Betamax(s).use_cassette('requests_2_11_body_matcher',

View File

@ -10,6 +10,7 @@ SRC_URI += " \
file://run-ptest \
git://github.com/betamaxpy/betamax;protocol=https;branch=main \
file://0001-Drop-ptests-fixtures-and-recorde_modes.patch \
file://0001-test_placeholders-use-pytest-vcr-or-skip-if-cassette.patch \
"