From 97ca944123fe6717d70331a9fe147b134405c5ae Mon Sep 17 00:00:00 2001 From: bosd Date: Wed, 21 Aug 2024 07:33:27 +0200 Subject: [PATCH] [IMP]: Add pytest-mpl [IMP]: Add pytest-mpl --- noxfile.py | 2 +- pyproject.toml | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/noxfile.py b/noxfile.py index 0ef3e7f7..4360cd60 100644 --- a/noxfile.py +++ b/noxfile.py @@ -168,7 +168,7 @@ def tests(session: Session) -> None: session.install(".") session.install( - "coverage[toml]", "pytest", "pygments", *base_requires, *plot_requires + "coverage[toml]", "pytest", "pytest-mpl", "pygments", *base_requires, *plot_requires ) try: session.run("coverage", "run", "--parallel", "-m", "pytest", *session.posargs) diff --git a/pyproject.toml b/pyproject.toml index 42d4b4d3..7a3e8813 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -44,6 +44,7 @@ pep8-naming = ">=0.12.1" pre-commit = ">=2.16.0" pre-commit-hooks = ">=4.1.0" pytest = ">=6.2.5" +pytest-mpl = ">=0.17.0" pyupgrade = ">=2.29.1" safety = ">=2.2.3" sphinx = ">=4.3.2"