Skip to content

Commit

Permalink
Remove the large test files
Browse files Browse the repository at this point in the history
  • Loading branch information
SWHL committed Feb 4, 2024
1 parent a2e11df commit fb3886a
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
Binary file modified python/tests/test_files/two_dim_image.npy
Binary file not shown.
3 changes: 2 additions & 1 deletion python/tests/test_ort.py
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,8 @@ def test_input_three_ndim_two_channel():
image_array = np.load(str(img_npy))
result, _ = engine(image_array)

assert len(result) == 87
assert len(result) == 1
assert result[0][1] == " TREND PLOT REPORT"


def test_input_three_ndim_one_channel():
Expand Down
3 changes: 2 additions & 1 deletion python/tests/test_paddle.py
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,8 @@ def test_input_three_ndim_two_channel():
image_array = np.load(str(img_npy))
result, _ = engine(image_array)

assert len(result) == 87
assert len(result) == 1
assert result[0][1] == " TREND PLOT REPORT"


def test_input_three_ndim_one_channel():
Expand Down
3 changes: 2 additions & 1 deletion python/tests/test_vino.py
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,8 @@ def test_input_three_ndim_two_channel():
image_array = np.load(str(img_npy))
result, _ = engine(image_array)

assert len(result) == 87
assert len(result) == 1
assert result[0][1] == " TREND PLOT REPORT"


def test_input_three_ndim_one_channel():
Expand Down

0 comments on commit fb3886a

Please sign in to comment.