add pypdf as test dependency

This commit is contained in:
Sina Atalay 2024-02-11 23:09:08 +01:00
parent 0dd4ecf000
commit be5b5143ab
1 changed files with 6 additions and 1 deletions

View File

@ -100,7 +100,12 @@ building_docs = ["mkdocs-material==9.5.4", "mkdocstrings-python==1.8.0"]
# For tests, RenderCV uses pytest. Coverage package is used to generate coverage
# reports.
testing = ["coverage==7.4.0", "pytest==7.4.4", "time-machine==2.13.0"]
testing = [
"coverage==7.4.0",
"pytest==7.4.4",
"time-machine==2.13.0",
"pypdf==4.0.1",
]
# Ruff is a linter (a tool to flag stylistic errors, bugs, suspicious constructs, etc.)
# Black is a code formatter.