Skip to content

Commit 6d2521c

Browse files
authored
Ignore the .pixi folder during the collection. (#662)
1 parent a2cae00 commit 6d2521c

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

docs/source/changes.md

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ releases are available on [PyPI](https://pypi.org/project/pytask) and
1111
to {user}`felixschmitz` for the report! The feature is enabled by adding an
1212
`attributes` field on `PNode` and `PProvisionalNode` that will be mandatory on custom
1313
nodes in v0.6.0.
14+
- {pull}`662` adds the `.pixi` folder to be ignored by default during the collection.
1415

1516
## 0.5.2 - 2024-12-19
1617

src/_pytask/config.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
from pluggy import PluginManager
1818

1919

20-
_IGNORED_FOLDERS: list[str] = [".git/*", ".venv/*"]
20+
_IGNORED_FOLDERS: list[str] = [".git/*", ".venv/*", ".pixi/*"]
2121

2222

2323
_IGNORED_FILES: list[str] = [

0 commit comments

Comments
 (0)