Files
hla_framework_bd/justfile
T
Benjamin Labrecque e1964c1d70
Deploy and restart modified services / deploy (push) Successful in 12s
Deploy bin / deploy (push) Successful in 2s
feat: restructure python app and add option to add tests for apps
2026-07-15 12:18:53 +02:00

15 lines
415 B
Makefile

# Set the shell to bash (default is sh)
set shell := ["bash", "-c"]
# List all available commands when someone just types 'just'
default:
@just --list
# Run tests for ALL services (using find loop)
test-all:
find services -name "pyproject.toml" -execdir uv run pytest \;
# Run tests for a SPECIFIC service (e.g., 'just test master')
test service:
cd services/{{service}}/current/app && uv run pytest