test_backend.sh 233 B

12345678910
  1. #!/bin/sh
  2. cd backend
  3. ruff check && ruff format --check
  4. if [ "$1" = "--full" ]; then
  5. ../venv/bin/python3 -m pytest tests/ -v -n 30
  6. else
  7. ../venv/bin/python3 -m pytest tests/ -v -n 30 --ignore=tests/unit/services/test_bambu_ftp.py
  8. fi