Compiles my project
There are no warnings if I use simple
I got 32 Warnings (when running in xcode or swift test). Mostly because of 'Matcher' is deprecated:
I know this is related to https://github.com/Quick/Nimble/issues/452 and https://github.com/Quick/Nimble/issues/463 but this isn't fixed when using the package-manager
List the software versions you're using:
Please also mention which package manager you used and its version. Delete the
other package managers in this list:
swift package init.package(url: "https://github.com/Quick/Nimble.git", .upToNextMajor(from: "7.1.1")), to dependencies in package.swiftNimble to dependencies in the testTargetswift test or swift package generate-xcodeproj and compile the project in xcodeI don't think there is a way to suppress such warnings from the package author side, unfortunately.
But you can achieve it on your side (consumer side): $ swift test -Xswiftc -suppress-warnings
Closing this due to inactivity.
This is still happening to me as of may 2020, what's up with that @ikesyo ?
Deprecation warnings remain until the deprecation roadmap completes at Nimble v10.
Unfortunately in Swift there is no equivalent of #pragma clang diagnostic ignored "-Wdeprecated-implementations" available in ObjC.