Skip to content
Merged
Prev Previous commit
Next Next commit
Mark failing tests
  • Loading branch information
ShaharNaveh committed Aug 23, 2025
commit 6cb00e2ae97f2cff2b6668c9f93e735c3db79ea2
2 changes: 2 additions & 0 deletions Lib/test/test_hashlib.py
Original file line number Diff line number Diff line change
Expand Up @@ -784,6 +784,7 @@ def test_case_blake2b_all_parameters(self):
inner_size=7,
last_node=True)

@unittest.expectedFailure # TODO: RUSTPYTHON
@requires_blake2
def test_blake2b_vectors(self):
for msg, key, md in read_vectors('blake2b'):
Expand Down Expand Up @@ -831,6 +832,7 @@ def test_case_blake2s_all_parameters(self):
inner_size=7,
last_node=True)

@unittest.expectedFailure # TODO: RUSTPYTHON
@requires_blake2
def test_blake2s_vectors(self):
for msg, key, md in read_vectors('blake2s'):
Expand Down