From d32b7c0c246a1a925168335be065bfc565cc91aa Mon Sep 17 00:00:00 2001 From: Shivam Thakur <70829776+shivamcandela@users.noreply.github.com> Date: Tue, 6 Jul 2021 15:47:26 +0530 Subject: [PATCH] sanity.yml workflow execution string build argument changed from double quotes to single quotes --- .github/workflows/sanity.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/sanity.yml b/.github/workflows/sanity.yml index a634bda00..9686e3669 100644 --- a/.github/workflows/sanity.yml +++ b/.github/workflows/sanity.yml @@ -187,7 +187,7 @@ jobs: - -c - | cd tests - pytest -m "${{ github.event.inputs.marker_expression || 'sanity and not interop' }}" -s -vvv --testbed="${{ matrix.testbed }}" --skip-testrail --alluredir=/tmp/allure-results -o --build=${{ github.event.inputs.ap_firmware_url || "null"}} + pytest -m "${{ github.event.inputs.marker_expression || 'sanity and not interop' }}" -s -vvv --testbed="${{ matrix.testbed }}" --skip-testrail --alluredir=/tmp/allure-results -o --build=${{ github.event.inputs.ap_firmware_url || 'null'}} ret=\$? # sleep some time to be able to download the Allure results sleep 60