a3s-box-runtime 0.5.1

MicroVM runtime engine — VM lifecycle, OCI images, attestation, networking
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# 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