Skip to content

Commit b1db7b7

Browse files
committed
Disable all network tests until we can troubleshoot.
1 parent 24e8325 commit b1db7b7

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

Sources/Helpers/APIServer/APIServer+Start.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ extension APIServer {
113113
group.addTask {
114114
let localhostResolver = LocalhostDNSHandler(log: log)
115115
try localhostResolver.monitorResolvers()
116-
116+
117117
let nxDomainResolver = NxDomainResolver()
118118
let compositeResolver = CompositeResolver(handlers: [localhostResolver, nxDomainResolver])
119119
let hostsQueryValidator = StandardQueryValidator(handler: compositeResolver)

Tests/CLITests/Subcommands/Networks/TestCLINetwork.swift

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ class TestCLINetwork: CLITest {
9090
}
9191

9292
@available(macOS 26, *)
93-
@Test func testNetworkDeleteWithContainer() async throws {
93+
@Test(.disabled()) func testNetworkDeleteWithContainer() async throws {
9494
do {
9595
// prep: delete container and network, ignoring if it doesn't exist
9696
let name = getLowercasedTestName()
@@ -137,7 +137,7 @@ class TestCLINetwork: CLITest {
137137
}
138138

139139
@available(macOS 26, *)
140-
@Test func testNetworkLabels() async throws {
140+
@Test(.disabled()) func testNetworkLabels() async throws {
141141
do {
142142
// prep: delete container and network, ignoring if it doesn't exist
143143
let name = getLowercasedTestName()
@@ -193,7 +193,7 @@ class TestCLINetwork: CLITest {
193193
}
194194

195195
@available(macOS 26, *)
196-
@Test func testIsolatedNetwork() async throws {
196+
@Test(.disabled()) func testIsolatedNetwork() async throws {
197197
do {
198198
let name = getLowercasedTestName()
199199
let networkDeleteArgs = ["network", "delete", name]

0 commit comments

Comments
 (0)