Files
truenas-apps/devbox.json
Stavros Kois 33a4a12ae8 lib: use pre-built image (#1702)
* lib: use pre-built image

* lib: use the `tmpfs` key instead of the `volumes` for tmpfs type (#1708)

* tmpfs

* update hash and add tests
2025-02-25 10:50:29 +02:00

23 lines
572 B
JSON

{
"$schema": "https://raw.githubusercontent.com/jetify-com/devbox/0.13.7/.schema/devbox.schema.json",
"packages": [
"python@3.11",
"python3Packages.pyyaml",
"python3Packages.pytest",
"python3Packages.pytest-cov",
"python3Packages.bcrypt",
"python3Packages.pydantic"
],
"shell": {
"init_hook": [],
"scripts": {
"ports": ["python3 ./.github/scripts/port_validation.py"],
"lib-test": [
"pytest library/ -vvv",
"rm -r library/**/__pycache__",
"rm -r library/**/tests/__pycache__"
]
}
}
}