# A3S Box Runtime - Justfile
# Most commands available via root: just test, just fmt, just lint
default:
@just --list
# Run tests (single-threaded for gvproxy)
test:
cargo test -p a3s-box-runtime --lib -- --test-threads=1
# Run single test
test-one TEST:
cargo test -p a3s-box-runtime --lib -- --test-threads=1 {{TEST}}
# Run rootfs module tests
test-rootfs:
cargo test -p a3s-box-runtime --lib rootfs:: -- --test-threads=1 --nocapture