1876d8cd42
- run-tests.sh: no systemctl start/stop, just runs test-unit.py - synth-diagnostic.service: removed Before=, keeps After=prometheus-exporter (no deadlock risk since run-tests.sh doesn't start services) - justfile deploy: stop pipeline -> restart prometheus -> start synth-diagnostic -> restart pipeline Pipeline starts independently at boot (no After=synth-diagnostic). Diagnostic provides visibility at boot without blocking startup.
15 lines
356 B
Desktop File
15 lines
356 B
Desktop File
[Unit]
|
|
Description=Synth pipeline diagnostic — runs unit tests at boot
|
|
DefaultDependencies=no
|
|
After=multi-user.target prometheus-exporter.service
|
|
|
|
[Service]
|
|
Type=oneshot
|
|
ExecStart=/home/arduino/uno-q-audio-synth/scripts/run-tests.sh
|
|
StandardOutput=journal
|
|
StandardError=journal
|
|
RemainAfterExit=yes
|
|
FailureAction=none
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target |