From be5b5143ab9e99d239db418d143ae0eaad9d9dab Mon Sep 17 00:00:00 2001 From: Sina Atalay Date: Sun, 11 Feb 2024 23:09:08 +0100 Subject: [PATCH] add pypdf as test dependency --- pyproject.toml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 13e152b..5eb22a4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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.