Replies: 1 comment 22 replies
-
Hi, Interesting case, the problem with using For example, Test Explorer requires knowledge about tests received from logs, derived data, and Regarding the build command, I would need to investigate that, because I'm not sure yet.
Hmm, I will check that, maybe it requires some flag or extra command. |
Beta Was this translation helpful? Give feedback.
-
It would be nice if building and testing in an SPM package used
swift build
andswift test
instead of thexcodebuild
commands that require a scheme and workspace.The downside of using
xcodebuild
(which very well may be my skill issue) is having to constantly openXcode
and update the package scheme when adding new targets whereasswift build
andswift test
generally just work as expected.When working inside of
Xcode
I believe this is managed for you / new targets get added to the default<project>-Package
scheme, however when I'm working innvim
this doesn't occur, which leads to a couple of issues. Firstly LSP doesn't really work until you add the target to the scheme and build and secondly your project still builds however you may not be building all the targets that you think you are.At any rate, this is a great project and I really appreciate your work.
Beta Was this translation helpful? Give feedback.
All reactions