Skip to content

Commit f59c862

Browse files
1 parent 1e4e6c9 commit f59c862

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/l10n.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -269,13 +269,14 @@ jobs:
269269
if: steps.setup.conclusion == 'success'
270270
run: |
271271
pipenv run python -c "import sys; print(sys.platform)"
272-
$env:FX_EXECUTABLE = "C:\Program Files\Custom Firefox\firefox.exe"
272+
$env:FX_EXECUTABLE = 'C:\Program Files\Custom Firefox\firefox.exe'
273273
Start-Process -FilePath $env:FX_EXECUTABLE -ArgumentList "--version" -Wait -NoNewWindow
274274
pipenv run python check_l10n_test_cases.py
275275
"0" | Set-Content -Path "TEST_EXIT_CODE"
276276
$SCRIPT_EXIT_CODE = 0
277277
Get-Content "selected_l10n_mappings" | ForEach-Object {
278278
$line = $_
279+
Write-Host "Running tests for: $line"
279280
try {
280281
pipenv run python l10n_CM/run_l10n.py --fx-executable="$env:FX_EXECUTABLE" $line
281282
} catch {
@@ -295,12 +296,14 @@ jobs:
295296
run: |
296297
rm ./pyproject.toml;
297298
mv ./ci_l10n_pyproject_headed.toml ./pyproject.toml;
298-
$env:FX_EXECUTABLE = "C:\Program Files\Custom Firefox\firefox.exe"
299+
$env:FX_EXECUTABLE = 'C:\Program Files\Custom Firefox\firefox.exe'
300+
Write-Host "FX_EXECUTABLE: $FX_EXECUTABLE"
299301
pipenv run python check_l10n_test_cases.py
300302
"0" | Set-Content -Path "TEST_EXIT_CODE"
301303
$SCRIPT_EXIT_CODE = 0
302304
Get-Content "selected_l10n_mappings" | ForEach-Object {
303305
$line = $_
306+
Write-Host "Running tests for: $line"
304307
try {
305308
pipenv run python l10n_CM/run_l10n.py --fx-executable="$env:FX_EXECUTABLE" $line
306309
} catch {

0 commit comments

Comments
 (0)