Skip to content
Snippets Groups Projects
Commit 0aebe09f authored by Nick Cleintuar's avatar Nick Cleintuar
Browse files

Moved tests to different folder

parent e6bd085b
No related branches found
No related tags found
No related merge requests found
import pytest
import cv2
import math
from zesje.helpers import image_helper
from zesje.helpers import image_helper,pdf_helper
@pytest.mark.parametrize("test_input1, test_input2, expected", [
(cv2.KeyPoint(0,100,0), cv2.KeyPoint(0,1000,0), 0),
......@@ -10,6 +10,3 @@ from zesje.helpers import image_helper
])
def test_calc_angle(test_input1, test_input2, expected):
assert math.isclose(image_helper.calc_angle(test_input1, test_input2), expected, abs_tol=0.1)
def test_yolo():
assert 1==1
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