set working-directory := ".."

# Run all tests
default: rust python

# Run only Python tests
python *ARGS:
    uv run pytest {{ARGS}}

# Run only Rust tests
rust *ARGS:
    cargo test -p fastdsu {{ARGS}}
