Replies: 1 comment 1 reply
-
Hi,
Xcode also rebuilds the app when you rerun tests. You can see it in the Report Navigator tab. Although the incremental is quite fast. Here you can find additional information on how to speed up the incremental build: #201. In general, rebuild makes sense because it's not possible to know whether some files were changed or not, it would require going through all files and checking the modification date. Could you describe your use case? You shouldn't need to re-run tests without modifications, because in theory the result should be always the same. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
First, thank you all, this plugin is a lifesaver!
When executing a test, single, class, or entire project, the code gets rebuilt on each run. Obviously, this makes the development process very slow. When rerunning a test on XCode it does not rebuild when no changes are done.
Am I missing something?
Beta Was this translation helpful? Give feedback.
All reactions