Skip to content

Commit 44f4fa2

Browse files
rollback changes
1 parent d919763 commit 44f4fa2

File tree

5 files changed

+1
-225
lines changed

5 files changed

+1
-225
lines changed

.github/workflows/check-beta.yml

Lines changed: 0 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ jobs:
1414
outputs:
1515
win_reportable: ${{ steps.reportable.outputs.win }}
1616
mac_reportable: ${{ steps.reportable.outputs.mac }}
17-
mac_l10n_reportable: ${{ steps.reportable.outputs.mac_l10n }}
1817
steps:
1918
- name: Checkout repository
2019
uses: actions/checkout@v4
@@ -30,16 +29,6 @@ jobs:
3029
pipenv install
3130
echo win=$(pipenv run python -c 'from modules import testrail_integration as tri; print(tri.reportable("Windows"))') >> "$GITHUB_OUTPUT"
3231
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-
4332
Run-Win-Smoke:
4433
needs: Check-Beta-Version
4534
if: ${{ needs.Check-Beta-Version.outputs.win_reportable == 'True' }}
@@ -55,11 +44,3 @@ jobs:
5544
with:
5645
job_to_run: Smoke-MacOS
5746
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

.github/workflows/l10n.yml

Lines changed: 0 additions & 154 deletions
This file was deleted.

check_l10n_test_cases.py

Lines changed: 0 additions & 30 deletions
This file was deleted.

ci_l10n_pyproject_headed.toml

Lines changed: 0 additions & 21 deletions
This file was deleted.

conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -329,7 +329,7 @@ def pytest_configure(config):
329329
raise OSError("Could not find TestRail credentials")
330330

331331
if not tri.reportable():
332-
pytest.exit("Test run is not reportable. Exiting.", 2)
332+
pytest.exit("Test run is not reportable. Exiting.")
333333

334334

335335
def pytest_sessionfinish(session):

0 commit comments

Comments
 (0)