mirror of
https://git.linux-kernel.at/oliver/ivatar.git
synced 2025-11-18 14:08:04 +00:00
- 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
19 lines
498 B
Bash
Executable File
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)"
|