@@ -2,5 +2,10 @@
cd backend
ruff check && ruff format --check
-../venv/bin/python3 -m pytest tests/ -v -n 14
+
+if [ "$1" = "--full" ]; then
+ ../venv/bin/python3 -m pytest tests/ -v -n 14
+else
+ ../venv/bin/python3 -m pytest tests/ -v -n 14 --ignore=tests/unit/services/test_bambu_ftp.py
+fi
cd ..