Radish alpha
h
Radicle Heartwood Protocol & Stack
Radicle
Git (anonymous pull)
Log in to clone via SSH
simulation/just: Add test recipe to justfile
Adrian Duke committed 9 days ago
commit 898adeec651066918c49130d44607c9d12737922
parent f8150f54accaa1ef5ce130c011daba5852dfc5a2
2 files changed +7 -0
modified simulation/README.md
@@ -33,6 +33,9 @@ networking.firewall.trustedInterfaces = ["talos+"];
The environment is managed entirely via `just`. From the `simulation` directory, you can run:

```shell
+
# Run all tests
+
$ just test
+

# Start the complete simulation (creates cluster, configures K8s, and deploys the network)
$ just start

modified simulation/justfile
@@ -15,6 +15,10 @@ HINT := "💡 " + BOLD
default:
    @just --list

+
[group('test')]
+
test: setup
+
    @cargo test -p radicle-simulation
+

# Setup and start the complete simulation environment
[group('start')]
[group('setup')]