devbox.json 590 B

1234567891011121314151617181920212223
  1. {
  2. "$schema": "https://raw.githubusercontent.com/jetify-com/devbox/0.13.7/.schema/devbox.schema.json",
  3. "packages": [
  4. "python@3.11",
  5. "python3Packages.pyyaml",
  6. "python3Packages.pytest",
  7. "python3Packages.pytest-cov",
  8. "python3Packages.bcrypt",
  9. "python3Packages.pydantic",
  10. "git@latest"
  11. ],
  12. "shell": {
  13. "init_hook": [],
  14. "scripts": {
  15. "ports": ["python3 ./.github/scripts/port_validation.py"],
  16. "lib-test": [
  17. "pytest library/ -vvv",
  18. "rm -r library/**/__pycache__",
  19. "rm -r library/**/tests/__pycache__"
  20. ]
  21. }
  22. }
  23. }