-
-
Notifications
You must be signed in to change notification settings - Fork 12
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
Linecoverage: No such file or directory #63
Comments
When trying to fix it I got an error with the line after in the orb : |
To remove the errors I decided to remove the code coverage package from my project to avoid issues in the editmode tests. |
After adding back the code coverage package and fixing the previous issues I got another one with the move command because our Unity project doesn't have the same name as the repository. Here is a fix I use :
Also at the end of the command I added this to store the coverage result in the artifactory :
I also removed the |
I don't know why my private repository merge is in this ticket but it's a not a fix to this issue. |
Bug description
When running editmode tests on circle ci I got this error :
grep: Linecoverage: No such file or directory
When looking in the circle ci orb I saw this line 718 :
grep "$unity_project_full_path"/"$PARAM_TEST_PLATFORM"-coverage/Report/Summary.xml Linecoverage
But if I'm right the grep command doesn't work like this it should be
grep "string" path
How to reproduce
Run test on circle ci in editmode.
Here is my circle ci job :
The text was updated successfully, but these errors were encountered: