Skip to content

Commit 2cb0f2f

Browse files
authored
Put CommandsTests behind SWIFTCI_DISABLE_SDK_DEPENDENT_TESTS (#6507)
Looks like these tests are suffering from some of the same problems as `FunctionalTests` which makes sense since they're conceptually very similar.
1 parent c16252e commit 2cb0f2f

File tree

1 file changed

+18
-18
lines changed

1 file changed

+18
-18
lines changed

Package.swift

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -670,24 +670,6 @@ let package = Package(
670670
// platforms.
671671
#if !os(Windows)
672672
package.targets.append(contentsOf: [
673-
.testTarget(
674-
name: "CommandsTests",
675-
dependencies: [
676-
"swift-build",
677-
"swift-package",
678-
"swift-test",
679-
"swift-run",
680-
"Basics",
681-
"Build",
682-
"Commands",
683-
"PackageModel",
684-
"PackageRegistryTool",
685-
"SourceControl",
686-
"SPMTestSupport",
687-
"Workspace",
688-
]
689-
),
690-
691673
.testTarget(
692674
name: "FunctionalPerformanceTests",
693675
dependencies: [
@@ -712,6 +694,24 @@ if ProcessInfo.processInfo.environment["SWIFTCI_DISABLE_SDK_DEPENDENT_TESTS"] ==
712694
"SPMTestSupport"
713695
]
714696
),
697+
698+
.testTarget(
699+
name: "CommandsTests",
700+
dependencies: [
701+
"swift-build",
702+
"swift-package",
703+
"swift-test",
704+
"swift-run",
705+
"Basics",
706+
"Build",
707+
"Commands",
708+
"PackageModel",
709+
"PackageRegistryTool",
710+
"SourceControl",
711+
"SPMTestSupport",
712+
"Workspace",
713+
]
714+
),
715715
])
716716
}
717717
#endif

0 commit comments

Comments
 (0)