Guest User

Untitled

a guest
Oct 2nd, 2025
23
0
340 days
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.94 KB | None | 0 0
  1. =========================================================================================== FAILURES ===========================================================================================
  2. _________________________________________________________________________________________ test_patches _________________________________________________________________________________________
  3.  
  4. def test_patches():
  5. print("Boto3 version: {} aiobotocore version: {}".format(boto3.__version__, aiobotocore.__version__))
  6.  
  7. success = True
  8. for obj, digests in _API_DIGESTS.items():
  9. digest = hashlib.sha1(getsource(obj).encode('utf-8')).hexdigest()
  10. if digest not in digests:
  11. print("Digest of {}:{} not found in: {}".format(obj.__qualname__, digest, digests))
  12. success = False
  13.  
  14. > assert success
  15. E assert False
  16.  
  17. tests/test_patches.py:94: AssertionError
  18. ------------------------------------------------------------------------------------- Captured stdout call -------------------------------------------------------------------------------------
  19. Boto3 version: 1.40.30 aiobotocore version: 2.24.2
  20. Digest of copy:534f68820a410ba41072026994badca7f66fe1b9 not found in: {'ecf80dcb0fc794e941fce078862ad5e83147b7c1'}
  21. =================================================================================== short test summary info ====================================================================================
  22. FAILED tests/test_patches.py::test_patches - assert False
  23. =========================================================================== 1 failed, 53 passed, 1 xfailed in 18.32s ===========================================================================
  24. ==> ERROR: A failure occurred in check().
  25. Aborting...
  26. -> error making: python-aioboto3-exit status 4
  27. -> Failed to install the following packages. Manual intervention is required:
  28. python-aioboto3 - exit status 4
  29.  
Advertisement
Add Comment
Please, Sign In to add comment