Is it possible to exclude a native source set for ...
# multiplatform
p
Is it possible to exclude a native source set for tests? I’m using kotest assertions but it has no support for watchosArm32. So gradle fails because it’s trying to look up that dependency. Therefore I want to exclude that one in tests.
r
You can define your tests in a shared source set that includes all your targets except watchos. But be aware that you're more likely to have difficulty with IDE support this way with the current state of hierarchical project config
117 Views