-
Notifications
You must be signed in to change notification settings - Fork 252
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
.stryker-tmp folder is added to the files array #698
Labels
🐛 Bug
Something isn't working
Comments
I think we should ignore these files even if they show up in the git query. That way we don't have to rely on the users gitignore for this. |
Maybe we can use |
I tried to put the .stryker-tmp folder in the gitignore file and got new errors as below.
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Mentioned by @rexmq in #669
If the
.stryker-tmp
folder is not in your.gitignore
file it will be added to the files array and thus also to the sandboxes.This can be seen in the robobar example if you remove the

.stryker-tmp
folder from the.gitignore
file:Now we suddenly have over 400 files in the sandbox, while we generally only have around 40 with this repository.
When users use the
stryker init
we can add the.stryker-tmp
folder to their.gitignore
file, if they have any. But we should also make sure that we either clean the tmp folder when we start stryker or that we just ignore those files if they end up as the result of the git query.The text was updated successfully, but these errors were encountered: