tests and actions
Some checks failed
Pricing Tests / Pricing Model Tests (push) Failing after 4s
Pricing Tests / Pricing Documentation Check (push) Failing after 3s

This commit is contained in:
Tobias Brunner 2025-06-20 10:46:11 +02:00
parent c05feb37d3
commit 78f52ea7f4
No known key found for this signature in database
17 changed files with 4140 additions and 3 deletions

25
run_pricing_tests.sh Executable file
View file

@ -0,0 +1,25 @@
#!/bin/bash
# Test runner script for pricing tests
echo "Running Django pricing model tests..."
echo "====================================="
# Run specific pricing tests
echo "1. Running basic pricing model tests..."
uv run --extra dev manage.py test hub.services.tests.test_pricing --verbosity=2
echo ""
echo "2. Running pricing edge case tests..."
uv run --extra dev manage.py test hub.services.tests.test_pricing_edge_cases --verbosity=2
echo ""
echo "3. Running pricing integration tests..."
uv run --extra dev manage.py test hub.services.tests.test_pricing_integration --verbosity=2
echo ""
echo "4. Running all pricing tests together..."
uv run --extra dev manage.py test hub.services.tests --verbosity=2 --keepdb
echo ""
echo "Test run completed!"