We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3474461 commit 12ab2abCopy full SHA for 12ab2ab
Sources/SPMGraphTests/SPMGraphTests.swift
@@ -266,12 +266,8 @@ private extension SPMGraphTests {
266
allTestModulesToRun += testModulesToRun
267
}
268
269
- return Array( // Maps the Array from a Set to ensure there are no duplicates. To be revisited.
270
- Set(
271
- allTestModulesToRun
272
- .filter(\.name != "WorldTests") // hack to unblock CI, check back soon
273
- )
274
+ // Remove duplicate test modules
+ return allTestModulesToRun.spm_uniqueElements()
275
276
277
/// A function that generates the output with tests to run
0 commit comments