test_backend.sh 243 B

1234567891011
  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 14
  6. else
  7. ../venv/bin/python3 -m pytest tests/ -v -n 14 --ignore=tests/unit/services/test_bambu_ftp.py
  8. fi
  9. cd ..