Running swift test on the project does nothing.
Running swift test on the package runs the tests.
I should probably also mention that the packages I'm using are all my own for modulation. And the real issue I'm trying to accomplish here is having the tests in the package run daily as a part of my Xcode Cloud workflow for the app that uses them.
Obviously I could duplicate the tests from the packages into the project itself, but I figured there must be an easier, less redundant way?
Thank you for that answer. - I don't have a problem with running the tests in the packages separate from the app. That also makes sense. The issue I ran into with trying to do that is that the package is not an App or Framework, so there's no option to create an Xcode Cloud Workflow.
@NeoNacho we plan to create a couple of local packages. How can we make riunning those tests work from the main app that integrates them. We then could
move the tests from the main app to the frameowrk (where they belong)