Code: Select all
[tool.hatch.envs.hatch-test]
dev-mode = false # This is the line recommended by AI to have it installed instead of having it editable/local use mode
dependencies = [
"pytest"
]
Code: Select all
=========================================== FAILURES ===========================================
_________________________________________ test_binary __________________________________________
def test_binary() -> str | None:
if True:
root = files('del3')
children = [f for f in get_files_recursively(root)]
> raise AssertionError(f"{children}")
E AssertionError: [WindowsPath('E:/SourceCode/AndroidStudioProjects/Base/del3/src/del3/__about__.py'), WindowsPath('E:/SourceCode/AndroidStudioProjects/Base/del3/src/del3/__init__.py'), WindowsPath('E:/SourceCode/AndroidStudioProjects/Base/del3/src/del3/__pycache__/__init__.cpython-312.pyc')]
- Wie installiere ich mein Paket richtig als WHL, anstatt es direkt zu verwenden?
- Ist Hatch wirklich das beste Tool? Oder gibt es andere bessere/einfachere Build-Systeme?
Mobile version