From dc22bb95fd18497c217c89c19ecff55c570bd81c Mon Sep 17 00:00:00 2001 From: "D. Berge" Date: Thu, 3 Jul 2025 11:48:42 +0200 Subject: [PATCH] Disable 'no_fire' test due to changes in Smartsource software --- etc/qc/default/definitions.yaml | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/etc/qc/default/definitions.yaml b/etc/qc/default/definitions.yaml index bee7ac0..1abb0bb 100644 --- a/etc/qc/default/definitions.yaml +++ b/etc/qc/default/definitions.yaml @@ -45,11 +45,13 @@ name: "No fire" id: no_fire check: | - const currentShot = currentItem; - const gunData = currentItem._("raw_meta.smsrc"); - (gunData && gunData.guns && gunData.guns.length != gunData.num_active) - ? `Source ${gunData.src_number}: No fire (${gunData.guns.length - gunData.num_active} guns)` - : true; + // const currentShot = currentItem; + // const gunData = currentItem._("raw_meta.smsrc"); + // (gunData && gunData.guns && gunData.guns.length != gunData.num_active) + // ? `Source ${gunData.src_number}: No fire (${gunData.guns.length - gunData.num_active} guns)` + // : true; + // Disabled due to changes in Smartsource software. It now returns all guns on every shot, not just active ones. + true - name: "Pressure errors"