test_backend.sh 108 B

123456
  1. #!/bin/sh
  2. cd backend
  3. ruff check && ruff format --check
  4. ../venv/bin/python3 -m pytest tests/ -v -n 14
  5. cd ..