forked from josch/img2pdf
1
0
Fork 0

rename test.py -> src/img2pdf_test.py

main
parent 5b7f93bb9a
commit 66fd7cc765
Signed by untrusted user: josch
GPG Key ID: F2CBA5C78FBD83E1

@ -4490,11 +4490,11 @@ def test_layout(layout_test_cases):
@pytest.fixture( @pytest.fixture(
scope="session", scope="session",
params=os.listdir(os.path.join(os.path.dirname(__file__), "src", "tests", "input")), params=os.listdir(os.path.join(os.path.dirname(__file__), "tests", "input")),
) )
def general_input(request): def general_input(request):
assert os.path.isfile( assert os.path.isfile(
os.path.join(os.path.dirname(__file__), "src", "tests", "input", request.param) os.path.join(os.path.dirname(__file__), "tests", "input", request.param)
) )
return request.param return request.param
@ -4502,10 +4502,10 @@ def general_input(request):
@pytest.mark.parametrize("engine", ["internal", "pikepdf", "pdfrw"]) @pytest.mark.parametrize("engine", ["internal", "pikepdf", "pdfrw"])
def test_general(general_input, engine): def test_general(general_input, engine):
inputf = os.path.join( inputf = os.path.join(
os.path.dirname(__file__), "src", "tests", "input", general_input os.path.dirname(__file__), "tests", "input", general_input
) )
outputf = os.path.join( outputf = os.path.join(
os.path.dirname(__file__), "src", "tests", "output", general_input + ".pdf" os.path.dirname(__file__), "tests", "output", general_input + ".pdf"
) )
assert os.path.isfile(outputf) assert os.path.isfile(outputf)
f = inputf f = inputf
Loading…
Cancel
Save