Spaces:
Sleeping
Sleeping
Submission ready
Browse files- pyproject.toml +8 -0
pyproject.toml
CHANGED
|
@@ -71,3 +71,11 @@ markers = [
|
|
| 71 |
"slow: Slow-running tests (>5 seconds)"
|
| 72 |
]
|
| 73 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 71 |
"slow: Slow-running tests (>5 seconds)"
|
| 72 |
]
|
| 73 |
|
| 74 |
+
|
| 75 |
+
# Configure Poetry to skip installing the current project package during dependency installation.
|
| 76 |
+
# This environment uses Poetry to resolve/install dependencies, but this project is built with Hatchling
|
| 77 |
+
# and doesn't provide a top-level package matching the project name. Disabling package mode prevents
|
| 78 |
+
# errors like: "No file/folder found for package code4change-analysis".
|
| 79 |
+
[tool.poetry]
|
| 80 |
+
package-mode = false
|
| 81 |
+
|