You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Ignore .docc files rather than emitting warnings, since it's useful to have them in packages without warnings. (#3609)
Unlike other Xcode-specific file types, such as Storyboards and Asset Catalogs, the .docc bundles are not needed for correctness during the build, and should therefore not trigger warnings.
rdar://78133445
// At the end we add the ignored types. They might duplicate some of the rules in `additionalFileRules`, but in that case, the rule to ignore the file type will never be reached.
Copy file name to clipboardExpand all lines: Tests/PackageLoadingTests/TargetSourcesBuilderTests.swift
+34Lines changed: 34 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -661,4 +661,38 @@ class TargetSourcesBuilderTests: XCTestCase {
661
661
662
662
XCTAssertEqual(diags.diagnostics.map{ $0.description },["found 1 file(s) which are unhandled; explicitly declare them as resources or exclude from the target\n /Foo.xcdatamodel\n"])
0 commit comments