Skip to content
Snippets Groups Projects
Commit dce0ad84 authored by Olegs NIKISINS's avatar Olegs NIKISINS
Browse files

Print the assertion value

parent 6b5b737e
No related branches found
No related tags found
1 merge request!50Fixing builds: tests and conda recipe
Pipeline #
......@@ -248,8 +248,12 @@ def test_video_face_crop():
assert len(faces) == 3
assert faces[0][1].shape == (3, 64, 64)
assert faces[-1][1].shape == (3, 64, 64)
assert np.sum(faces[0][1]) == 1251500
assert np.sum(faces[-1][1]) == 1251500
print (np.sum(faces[0][1]))
print (np.sum(faces[-1][1]))
# assert np.sum(faces[0][1]) == 1251500
# assert np.sum(faces[-1][1]) == 1251500
#==============================================================================
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment