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
After investigating, the spaces are intentionally removed by a sed command in the _junitxml_add_suite.
If I allow the space character in this sed command, I get a problem : the name of the suite is used to create a temporary file for cukinia. If this name contains spaces, the file is not correctly created.
I found two solutions for this problem :
replace all spaces character with underscores (it will be human readable and will not cause the file problem)
correct the shell syntax of cukinia to accept spaces in temporary file names.
If it isn't a problem to have spaces in file names, I propose the implementation in PR #60
When logging a new suite which name contains spaces, the spaces are removed by cukinia.
cukinia.conf
When running this command :
$ cukinia -f junitxml -o res.xml cukinia.conf
The output is
res.xml
And the spaces are gone ("suitewithspaces")
It should not be a problem to keep them because they are enclosed with quotes.
The text was updated successfully, but these errors were encountered: