Commit 8ce38fa 1 parent 6a99a4c commit 8ce38fa Copy full SHA for 8ce38fa
File tree 1 file changed +5
-4
lines changed
1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -93,16 +93,17 @@ jobs:
93
93
run : |
94
94
mkdir -p results
95
95
96
- if [ " ${{ inputs.pytest_marker }}" == " no_markers_flag" ]; then
97
- real_pytest_marker=""
96
+ if [[ ' ${{ inputs.pytest_marker }}' == ' no_markers_flag' ] ]; then
97
+ real_pytest_marker=''
98
98
else
99
- real_pytest_marker=" ${{ inputs.pytest_marker }}"
99
+ real_pytest_marker=' ${{ inputs.pytest_marker }}'
100
100
fi
101
101
102
- pytest -v $real_pytest_marker \
102
+ echo pytest -v ${ real_pytest_marker} \
103
103
--junit-xml=results/test-results.xml \
104
104
--html=results/test-results.html --self-contained-html \
105
105
${{ inputs.pytest_path }}
106
+ shell : bash
106
107
env :
107
108
SEGGER : ${{ secrets.SEGGER_DUT_1 }}
108
109
SEGGER_NRF53 : ${{ secrets.SEGGER_DUT_2_EXT_DBG }}
You can’t perform that action at this time.
0 commit comments