We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a2cae00 commit 6d2521cCopy full SHA for 6d2521c
docs/source/changes.md
@@ -11,6 +11,7 @@ releases are available on [PyPI](https://pypi.org/project/pytask) and
11
to {user}`felixschmitz` for the report! The feature is enabled by adding an
12
`attributes` field on `PNode` and `PProvisionalNode` that will be mandatory on custom
13
nodes in v0.6.0.
14
+- {pull}`662` adds the `.pixi` folder to be ignored by default during the collection.
15
16
## 0.5.2 - 2024-12-19
17
src/_pytask/config.py
@@ -17,7 +17,7 @@
from pluggy import PluginManager
18
19
20
-_IGNORED_FOLDERS: list[str] = [".git/*", ".venv/*"]
+_IGNORED_FOLDERS: list[str] = [".git/*", ".venv/*", ".pixi/*"]
21
22
23
_IGNORED_FILES: list[str] = [
0 commit comments