File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -139,6 +139,7 @@ jobs:
139139 needs : [prepare]
140140 with :
141141 ignoreLowerCoverage : ${{ github.event.inputs.ignoreLowerCoverage == 'true' }}
142+ skipSelenium : true
142143 targetBaseVersion : ${{ needs.prepare.outputs.base_image_version }}
143144
144145 # -----------------------------------------------------------------
Original file line number Diff line number Diff line change 88 default : false
99 required : true
1010 type : boolean
11+ skipSelenium :
12+ description : ' Skip Selenium Tests'
13+ default : false
14+ required : true
15+ type : boolean
1116 targetBaseVersion :
1217 description : ' Target Base Image Version'
1318 default : latest
4752 echo "Model changes without migrations found."
4853 exit 1
4954 fi
55+ if [[ "x${{ inputs.skipSelenium }}" == "xtrue" ]]; then
56+ echo "Disable selenium tests..."
57+ sudo rm /usr/bin/geckodriver
58+ fi
5059 echo "Running tests..."
5160 if [[ "x${{ inputs.ignoreLowerCoverage }}" == "xtrue" ]]; then
5261 echo "Lower coverage failures will be ignored."
You can’t perform that action at this time.
0 commit comments