From 57e9bbe7c24e0d42cecbd8d811e0e538f4830f97 Mon Sep 17 00:00:00 2001 From: Mark Pitman Date: Thu, 25 Jun 2026 21:24:01 -0700 Subject: [PATCH] docs: update test/README.md to reference just instead of make --- test/README.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/test/README.md b/test/README.md index 047e2d8..ca0c77e 100644 --- a/test/README.md +++ b/test/README.md @@ -68,14 +68,14 @@ Use the wrapper script: ./test/run-tests.sh syntax ``` -Or use the Makefile: +Or use just: ```bash -make test -make test-all -make test-debian -make test-debian-all -make test-syntax +just test +just test-all +just test-debian +just test-debian-all +just test-syntax ``` ## CI Workflows @@ -96,8 +96,8 @@ For example, Debian CI tests target `debian/install-packages` rather than `debia ## Recommended Workflow 1. Run `bash scripts/check.sh` for repo-wide syntax validation. -2. Run `make test-debian` for a quick Debian smoke test. -3. Run `make test-debian-all` before merging Debian-specific changes. +2. Run `just test-debian` for a quick Debian smoke test. +3. Run `just test-debian-all` before merging Debian-specific changes. 4. Use QEMU only if you need to validate behavior Docker cannot represent. ## Future Enhancements