Skip to content

Commit

Permalink
test: stop testing with python2
Browse files Browse the repository at this point in the history
  • Loading branch information
sbidoul committed Nov 29, 2024
1 parent ead8d9c commit 7721c2f
Showing 1 changed file with 0 additions and 18 deletions.
18 changes: 0 additions & 18 deletions tests/kwkhtmltopdf_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,6 @@ def _run_expect_file(self, args, expected_pdf_base_name):
params=[
"native",
"client_test_py",
"client_sys_py2",
"client_sys_py3",
"client_go",
],
scope="module",
Expand All @@ -82,22 +80,6 @@ def client(request):
yield Client(
[os.path.join(HERE, "..", "client", "python", "kwkhtmltopdf_client.py")]
)
elif request.param == "client_sys_py2":
# run the client with the system python2
yield Client(
[
"/usr/bin/python2",
os.path.join(HERE, "..", "client", "python", "kwkhtmltopdf_client.py"),
]
)
elif request.param == "client_sys_py3":
# run the client with the system python2
yield Client(
[
"/usr/bin/python3",
os.path.join(HERE, "..", "client", "python", "kwkhtmltopdf_client.py"),
]
)
elif request.param == "client_go":
yield Client(
[
Expand Down

0 comments on commit 7721c2f

Please sign in to comment.