The structure of my project is more or less like this
The tests of my main (app) application work,
How do I invoke the other tests of the other workspaces?
├── app
│ ├── Cargo.toml
│ ├── src
│ └── tests <--- This works
├── domain
│ ├── Cargo.toml
│ └── src
├── infrastructure
│ ├── Cargo.toml
│ ├── src
│ └── test <--- I need to call these tests
├── README.md
├── Cargo.lock
├── Cargo.toml
I have seen that others create a new workspace to perform the integration tests, is there any other alternative ?