File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -269,13 +269,14 @@ jobs:
269
269
if : steps.setup.conclusion == 'success'
270
270
run : |
271
271
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'
273
273
Start-Process -FilePath $env:FX_EXECUTABLE -ArgumentList "--version" -Wait -NoNewWindow
274
274
pipenv run python check_l10n_test_cases.py
275
275
"0" | Set-Content -Path "TEST_EXIT_CODE"
276
276
$SCRIPT_EXIT_CODE = 0
277
277
Get-Content "selected_l10n_mappings" | ForEach-Object {
278
278
$line = $_
279
+ Write-Host "Running tests for: $line"
279
280
try {
280
281
pipenv run python l10n_CM/run_l10n.py --fx-executable="$env:FX_EXECUTABLE" $line
281
282
} catch {
@@ -295,12 +296,14 @@ jobs:
295
296
run : |
296
297
rm ./pyproject.toml;
297
298
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"
299
301
pipenv run python check_l10n_test_cases.py
300
302
"0" | Set-Content -Path "TEST_EXIT_CODE"
301
303
$SCRIPT_EXIT_CODE = 0
302
304
Get-Content "selected_l10n_mappings" | ForEach-Object {
303
305
$line = $_
306
+ Write-Host "Running tests for: $line"
304
307
try {
305
308
pipenv run python l10n_CM/run_l10n.py --fx-executable="$env:FX_EXECUTABLE" $line
306
309
} catch {
You can’t perform that action at this time.
0 commit comments