Skip to content

Commit 0bd43fe

Browse files
authored
Merge pull request #152 from Preocts/preocts
Stop nox clean session from breaking venvs
2 parents 86e3001 + 665dfee commit 0bd43fe

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

noxfile.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,17 +17,17 @@
1717

1818
# What we allowed to clean (delete)
1919
CLEANABLE_TARGETS = [
20-
"./**/dist",
21-
"./**/build",
22-
"./**/.nox",
20+
"./dist",
21+
"./build",
22+
"./.nox",
23+
"./.coverage",
24+
"./.coverage.*",
25+
"./coverage.json",
2326
"./**/.mypy_cache",
2427
"./**/.pytest_cache",
25-
"./**/.coverage",
2628
"./**/__pycache__",
2729
"./**/*.pyc",
2830
"./**/*.pyo",
29-
"./**/coverage.json",
30-
"./**/.coverage.*",
3131
]
3232

3333

0 commit comments

Comments
 (0)