From d0ba0f2cddb66cfd19527c39c4481c4a4339bd57 Mon Sep 17 00:00:00 2001 From: shihabuddin Date: Tue, 25 Apr 2023 16:18:43 +0600 Subject: [PATCH] stop duplicate pytest installation in same nox's session --- noxfile.py | 1 - 1 file changed, 1 deletion(-) diff --git a/noxfile.py b/noxfile.py index e5b92961..d9ae6f35 100644 --- a/noxfile.py +++ b/noxfile.py @@ -36,7 +36,6 @@ def tests(session): _install_dev_packages(session) _install_test_dependencies(session) - session.install("pytest") session.run("pytest") session.notify("cover")