punimtag/run_tests.sh
Tanya 1bf7cdf4ab
Some checks failed
CI / skip-ci-check (push) Successful in 1m27s
CI / skip-ci-check (pull_request) Successful in 1m26s
CI / python-lint (push) Has been cancelled
CI / test-backend (push) Has been cancelled
CI / build (push) Has been cancelled
CI / secret-scanning (push) Has been cancelled
CI / dependency-scan (push) Has been cancelled
CI / sast-scan (push) Has been cancelled
CI / workflow-summary (push) Has been cancelled
CI / lint-and-type-check (push) Has been cancelled
CI / lint-and-type-check (pull_request) Successful in 2m5s
CI / python-lint (pull_request) Successful in 1m52s
CI / test-backend (pull_request) Successful in 3m19s
CI / build (pull_request) Successful in 2m24s
CI / secret-scanning (pull_request) Successful in 1m41s
CI / dependency-scan (pull_request) Successful in 1m32s
CI / sast-scan (pull_request) Successful in 2m43s
CI / workflow-summary (pull_request) Successful in 1m26s
chore: Update backend test command and add test runner script
This commit modifies the backend test command in `package.json` to skip DeepFace during tests by setting the `SKIP_DEEPFACE_IN_TESTS` environment variable. Additionally, a new `run_tests.sh` script is introduced to streamline the testing process, ensuring the virtual environment is set up and dependencies are installed before running the tests. These changes enhance the testing workflow and improve reliability.
2026-01-07 15:23:16 -05:00

47 lines
1.5 KiB
Bash
Executable File

#!/bin/bash
# Simple test runner script for PunimTag backend tests
set -e
# Colors for output
GREEN='\033[0;32m'
RED='\033[0;31m'
YELLOW='\033[1;33m'
NC='\033[0m' # No Color
echo -e "${YELLOW}🧪 Running PunimTag Backend Tests${NC}"
echo ""
# Set environment variables
export PYTHONPATH=$(pwd)
export SKIP_DEEPFACE_IN_TESTS=1
# Check if venv exists
if [ ! -d "venv" ]; then
echo -e "${RED}❌ Virtual environment not found. Please create it first:${NC}"
echo " python3 -m venv venv"
echo " source venv/bin/activate"
echo " pip install -r requirements.txt"
exit 1
fi
# Check if pytest is installed
if ! ./venv/bin/python3 -m pytest --version > /dev/null 2>&1; then
echo -e "${YELLOW}⚠️ pytest not found. Installing dependencies...${NC}"
./venv/bin/pip install -r requirements.txt
fi
echo -e "${GREEN}✅ Environment ready${NC}"
echo ""
echo "Running tests..."
echo "━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━"
echo ""
# Run tests with clear output
./venv/bin/python3 -m pytest tests/ -v --tb=short
echo ""
echo "━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━"
echo -e "${GREEN}✅ Tests completed${NC}"