Skip to content

Commit

Permalink
Merge pull request #152 from Preocts/preocts
Browse files Browse the repository at this point in the history
Stop nox clean session from breaking venvs
  • Loading branch information
Preocts authored Feb 12, 2024
2 parents 86e3001 + 665dfee commit 0bd43fe
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.*",
]


Expand Down

0 comments on commit 0bd43fe

Please sign in to comment.