File tree Expand file tree Collapse file tree 5 files changed +1
-225
lines changed Expand file tree Collapse file tree 5 files changed +1
-225
lines changed Original file line number Diff line number Diff line change 14
14
outputs :
15
15
win_reportable : ${{ steps.reportable.outputs.win }}
16
16
mac_reportable : ${{ steps.reportable.outputs.mac }}
17
- mac_l10n_reportable : ${{ steps.reportable.outputs.mac_l10n }}
18
17
steps :
19
18
- name : Checkout repository
20
19
uses : actions/checkout@v4
30
29
pipenv install
31
30
echo win=$(pipenv run python -c 'from modules import testrail_integration as tri; print(tri.reportable("Windows"))') >> "$GITHUB_OUTPUT"
32
31
echo mac=$(pipenv run python -c 'from modules import testrail_integration as tri; print(tri.reportable("Darwin"))') >> "$GITHUB_OUTPUT"
33
- - name : Check if the l10n run is reportable
34
- id : l10n-reportable
35
- env :
36
- TESTRAIL_REPORT : true
37
- FX_L10N : true
38
- TESTRAIL_BASE_URL : ${{ secrets.TESTRAIL_BASE_URL }}
39
- TESTRAIL_API_KEY : ${{ secrets.TESTRAIL_API_KEY }}
40
- TESTRAIL_USERNAME : ${{ secrets.TESTRAIL_USERNAME }}
41
- run : echo mac_l10n=$(pipenv run python -c 'from modules import testrail_integration as tri; print(tri.reportable("Darwin"))') >> "$GITHUB_OUTPUT"
42
-
43
32
Run-Win-Smoke :
44
33
needs : Check-Beta-Version
45
34
if : ${{ needs.Check-Beta-Version.outputs.win_reportable == 'True' }}
55
44
with :
56
45
job_to_run : Smoke-MacOS
57
46
secrets : inherit
58
-
59
- Run-L10N-Mac-Smoke :
60
- needs : Check-Beta-Version
61
- if : ${{ needs.Check-Beta-Version.outputs.mac_l10n_reportable == 'True' }}
62
- uses : ./.github/workflows/l10n_smoke.yml
63
- with :
64
- job_to_run : L10N-MacOS
65
- secrets : inherit
Load Diff This file was deleted.
Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -329,7 +329,7 @@ def pytest_configure(config):
329
329
raise OSError ("Could not find TestRail credentials" )
330
330
331
331
if not tri .reportable ():
332
- pytest .exit ("Test run is not reportable. Exiting." , 2 )
332
+ pytest .exit ("Test run is not reportable. Exiting." )
333
333
334
334
335
335
def pytest_sessionfinish (session ):
You can’t perform that action at this time.
0 commit comments