Files
ivatar/scripts/run_tests_no_ot.sh
Oliver Falk eeeb8a4f3a Simplify test scripts and move run_tests_local.sh to scripts/
- Move run_tests_local.sh to scripts/ directory for consistency
- Remove explicit test module listing from all test scripts
- Let Django auto-discover all tests instead of maintaining explicit lists
- Update README.md to reference new script location
- Simplify scripts/run_tests_with_coverage.py to use auto-discovery
- Reduce maintenance burden by eliminating duplicate test module lists
2025-10-16 18:00:17 +02:00

19 lines
498 B
Bash
Executable File

#!/bin/bash
# Run tests without OpenTelemetry enabled (default mode)
# This is the default test mode for most users
set -e
echo "Running tests without OpenTelemetry (default mode)..."
echo "====================================================="
# Ensure OpenTelemetry is disabled
export ENABLE_OPENTELEMETRY=false
export OTEL_ENABLED=false
# Run Django tests (Django will auto-discover all tests)
python3 manage.py test -v2
echo ""
echo "Tests completed successfully (OpenTelemetry disabled)"