tests and actions
This commit is contained in:
parent
c05feb37d3
commit
78f52ea7f4
17 changed files with 4140 additions and 3 deletions
25
run_pricing_tests.sh
Executable file
25
run_pricing_tests.sh
Executable 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!"
|
Loading…
Add table
Add a link
Reference in a new issue