-
Notifications
You must be signed in to change notification settings - Fork 45
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Flutter: Character reference "" is an invalid XML character. #43
Comments
Can you test what happens if you manually change the first line in the xml document to |
I changed and it seems
but I have this error:
error -> |
Hmm, possibly the character problem disappeared because the ant junit task doesn't allow version 1.1 files at all. Can you modify any working test suite xml to 1.1 to see if those then also break? |
I changed like this:
No difference, I still have a |
I have the same issue with GitLab CI XML parser - which doesn't support XML version 1.1:
When I changed the version manually, it just says:
Can you help me with this? |
@lukaszdudek-trueenergy As a temporary solution you can remove unsupported char sequence from generated XML file at GitLab CI level.
Where |
Having similar issue while generating JSON report. Trying to generate test report with github action got |
The variables:
J_UNIT_REPORT_FILE_NAME: junit-report.xml
script:
- flutter test --machine --coverage | sed 's/\\u001b//g' | tojunit --output $J_UNIT_REPORT_FILE_NAME |
On my flutter project by using junitreport I am making junit report but it is XML,
Now by Ant, I want to make Html from it. test.xml is at the root of my project, here I made build.xml:
Now I run this command in root folder:
Does it seem I need some configuration ?
Inside test.xml I have some testcase like below:
The text was updated successfully, but these errors were encountered: