From 665dfee005d20f40a17a20ad8e228c3e8e65f7b3 Mon Sep 17 00:00:00 2001 From: Preocts Date: Mon, 12 Feb 2024 00:01:04 -0500 Subject: [PATCH] Stop nox clean session from breaking venvs How about we don't delete the build folder inside the venv? resolves #151 --- noxfile.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/noxfile.py b/noxfile.py index bbfb610..9389d99 100644 --- a/noxfile.py +++ b/noxfile.py @@ -17,17 +17,17 @@ # What we allowed to clean (delete) CLEANABLE_TARGETS = [ - "./**/dist", - "./**/build", - "./**/.nox", + "./dist", + "./build", + "./.nox", + "./.coverage", + "./.coverage.*", + "./coverage.json", "./**/.mypy_cache", "./**/.pytest_cache", - "./**/.coverage", "./**/__pycache__", "./**/*.pyc", "./**/*.pyo", - "./**/coverage.json", - "./**/.coverage.*", ]