File tree Expand file tree Collapse file tree 2 files changed +3
-10
lines changed
Expand file tree Collapse file tree 2 files changed +3
-10
lines changed Original file line number Diff line number Diff line change 3838 type : string
3939env :
4040 FX_CHANNEL : ${{ inputs.channel }}
41- TEST_SET : ${{ inputs.test_set }}
41+ STARFOX_SPLIT : ${{ inputs.test_set }}
4242 TESTRAIL_BASE_URL : ${{ secrets.TESTRAIL_BASE_URL }}
4343 TESTRAIL_API_KEY : ${{ secrets.TESTRAIL_API_KEY }}
4444 TESTRAIL_USERNAME : ${{ secrets.TESTRAIL_USERNAME }}
6565 run : |
6666 echo "TESTRAIL_REPORT=true" | Out-File -FilePath .env -Encoding utf8 -Append -Force
6767 Write-Host "Running report for most recent Beta on Windows"
68- - name : Select Test Set
69- if : ${{ inputs.test_set != null }}
70- run : |
71- echo "STARFOX_SPLIT=$TEST_SET" | Out-File -FilePath .env -Encoding utf8 -Append -Force
72- shell : pwsh
7368 - name : Install dependencies
7469 run : |
7570 mkdir -p artifacts;
@@ -168,9 +163,6 @@ jobs:
168163 run : |
169164 echo "TESTRAIL_REPORT='true'" >> "$GITHUB_ENV";
170165 echo "Running report for most recent Beta on MacOS";
171- - name : Select Test Set
172- if : ${{ inputs.test_set != null }}
173- run : echo "STARFOX_SPLIT=$TEST_SET" >> .env
174166 - name : Set Environment (Manual)
175167 if : ${{ inputs.mac_installer_link }}
176168 run : |
Original file line number Diff line number Diff line change @@ -292,7 +292,8 @@ def reportable(platform_to_test=None):
292292 )
293293
294294 if not os .environ .get ("STARFOX_SPLIT" ):
295- sys .exit ("No split selected" )
295+ logging .warning ("No split selected" )
296+ return False
296297 manifest = TestKey (TEST_KEY_LOCATION )
297298 expected_suites = manifest .get_valid_suites_in_split (
298299 os .environ ["STARFOX_SPLIT" ], suite_numbers = True
You can’t perform that action at this time.
0 commit comments