We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c837724 commit 4e0b579Copy full SHA for 4e0b579
1 file changed
justfile
@@ -1,4 +1,4 @@
1
-set dotenv-filename := "tests/system_tests/.env"
+SESSION := "cm12345-1"
2
3
compose +ARGS="up -d":
4
docker compose -f tests/system_tests/compose.yaml {{ARGS}}
@@ -11,8 +11,12 @@ configure-adsim: (compose "exec" "numtracker" "/app/numtracker" "client" "config
11
12
services: compose configure-adsim
13
14
-blueapi *ARGS="serve":
15
- uv run blueapi -c tests/system_tests/config.yaml {{ARGS}}
+serve *OPTS: services
+ source tests/system_tests/.env
16
+ uv run blueapi -c tests/system_tests/config.yaml {{OPTS}} serve
17
+
18
+run PLAN PARAMS:
19
+ uv run blueapi -c tests/system_tests/config.yaml controller run -i {{ SESSION }} {{ PLAN }} '{{ PARAMS }}'
20
21
lint:
22
uv run ruff check
0 commit comments