diff options
author | Khem Raj <raj.khem@gmail.com> | 2025-02-11 12:52:44 -0800 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2025-02-12 09:16:10 -0800 |
commit | d390ea77667ff46e9c7207633c7bb256390f2156 (patch) | |
tree | 8b65e0b9ab5fe8da4bf37f807d3644a1ccec62e0 /meta-python | |
parent | ead8f7b3273965f383ec4999bb38e87ba37daf61 (diff) | |
download | meta-openembedded-d390ea77667ff46e9c7207633c7bb256390f2156.tar.gz |
python3-google-auth: Disable TestDecryptPrivateKey ptest
We have upgraded py3-openssl module to 24.3.0 in core, which
means this test now fails as py3-openssl has removed the APIs it uses [1]
disable until it is fixed in google-auth module
Fixes
ERROR: 'OpenSSL.crypto' has no attribute 'sign'
[1] https://github.com/googleapis/google-api-python-client/issues/2554
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-python')
-rw-r--r-- | meta-python/recipes-devtools/python/python3-google-auth/run-ptest | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta-python/recipes-devtools/python/python3-google-auth/run-ptest b/meta-python/recipes-devtools/python/python3-google-auth/run-ptest index f1c8729f0e..e2f6d49fd0 100644 --- a/meta-python/recipes-devtools/python/python3-google-auth/run-ptest +++ b/meta-python/recipes-devtools/python/python3-google-auth/run-ptest | |||
@@ -1,4 +1,4 @@ | |||
1 | #!/bin/sh | 1 | #!/bin/sh |
2 | 2 | ||
3 | pytest --automake | 3 | # Ignore mtls test until https://github.com/googleapis/google-api-python-client/issues/2554 is fixed |
4 | 4 | pytest --automake --deselect tests/transport/test__mtls_helper.py::TestDecryptPrivateKey | |