You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Please, use [System.IO.File]::ReadAllText with encoding in second parameter. [System.IO.StreamWriter]::new without encoding create file without BOM.
May be:
replace [System.IO.StreamWriter]::new by [System.IO.StreamWriter]::new with encoding (utf8)
replace [System.IO.File]::ReadAllText by [System.IO.File]::ReadAllText with encoding (utf8, with BOM!)
replace Export-Clixml by Export-Clixml with encoding (utf8, with BOM!)
Now this action ignore unicode strings (see https://github.com/test-st-petersburg/DocTemplates/runs/3995464448?check_suite_focus=true ).
Please, use UTF8 encoding on tests results processing.
The text was updated successfully, but these errors were encountered: