From 48589f6f7d5e8ccf9199e0676b10b485a5451e11 Mon Sep 17 00:00:00 2001 From: Bas Nijholt Date: Mon, 30 May 2022 21:35:03 -0700 Subject: [PATCH] no need to install again --- docs/Makefile | 7 ------- noxfile.py | 2 +- 2 files changed, 1 insertion(+), 8 deletions(-) diff --git a/docs/Makefile b/docs/Makefile index 6e2fdeea8..e6b3ab122 100644 --- a/docs/Makefile +++ b/docs/Makefile @@ -14,13 +14,6 @@ help: .PHONY: help Makefile -source/_static/logo_docs.png: logo.py - python logo.py - -# Fake target to avoid the catch-all target -logo.py: - @echo "never executed" - # Catch-all target: route all unknown targets to Sphinx using the new # "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS). %: Makefile source/_static/logo_docs.png diff --git a/noxfile.py b/noxfile.py index ea5ca4ecd..82b65b27a 100644 --- a/noxfile.py +++ b/noxfile.py @@ -8,7 +8,7 @@ def pytest(session, all_deps): session.install(".[testing,other]") else: session.install(".[testing]") - session.install(".") + session.run("coverage", "erase") if session.python == "3.10":