-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Remove 'try XCTSkip()' from functional tests #2982
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Fix warning: "No calls to throwing functions occur within 'try' expression" Fix warning: "Result of 'XCTSkip' initializer is unused"
@swift-ci please smoke test |
IIRC these tests were skipped because they were causing occasional failures in full Swift CI. Boris may know more about the details, but I don't know that we can no longer skip them. But if they were never really skipped in the first place, that may put things in a different light. |
So |
Thanks for noticing this, I mean to use |
- we were actually not really skipping a few tests, because I didn't do that correctly in swiftlang#2948 - we need to skip a few additional tests which are using the same functionality (running an inferior `swift test`) Supersedes swiftlang#2982
Closing on favour of #2984 |
- we were actually not really skipping a few tests, because I didn't do that correctly in swiftlang#2948 - we need to skip a few additional tests which are using the same functionality (running an inferior `swift test`) Supersedes swiftlang#2982
This PR fixes the following warnings when building the project with Xcode 12:
I think the intention was for these to be
throw XCTSkip()
to skip these tests (#2948), but as far as I can tell, this change wouldn't have that effect. If the parallel tests are no longer causing CI failures, I think we should be able to remove these outright.