Skip to content

Commit

Permalink
Merge pull request #3505 from balena-os/kyle/wireless-test-config
Browse files Browse the repository at this point in the history
tests: config: restore both network options to false
  • Loading branch information
flowzone-app[bot] authored Aug 31, 2024
2 parents 782207a + a1ed821 commit 161730d
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions tests/suites/cloud/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ module.exports = [
suite: `${__dirname}/../suites/cloud`,
config: {
networkWired: false,
networkWireless: process.env.WORKER_TYPE === 'qemu' ? false : true,
networkWireless: false,
balenaApiKey: process.env.BALENACLOUD_API_KEY,
balenaApiUrl: process.env.BALENACLOUD_API_URL,
organization: process.env.BALENACLOUD_ORG,
Expand All @@ -29,4 +29,4 @@ module.exports = [
apiKey: process.env.BALENACLOUD_API_KEY,
},
}
]
]
4 changes: 2 additions & 2 deletions tests/suites/hup/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ module.exports = [
suite: `${__dirname}/../suites/hup`,
config: {
networkWired: false,
networkWireless: process.env.WORKER_TYPE === 'qemu' ? false : true,
networkWireless: false,
downloadVersion: 'latest',
balenaApiKey: process.env.BALENACLOUD_API_KEY,
balenaApiUrl: process.env.BALENACLOUD_API_URL,
Expand All @@ -30,4 +30,4 @@ module.exports = [
apiKey: process.env.BALENACLOUD_API_KEY,
},
}
]
]
4 changes: 2 additions & 2 deletions tests/suites/os/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ module.exports = [
suite: `${__dirname}/../suites/os`,
config: {
networkWired: false,
networkWireless: process.env.WORKER_TYPE === 'qemu' ? false : true,
networkWireless: false,
balenaApiKey: process.env.BALENACLOUD_API_KEY,
balenaApiUrl: process.env.BALENACLOUD_API_URL,
organization: process.env.BALENACLOUD_ORG,
Expand All @@ -29,4 +29,4 @@ module.exports = [
apiKey: process.env.BALENACLOUD_API_KEY,
},
}
]
]

0 comments on commit 161730d

Please sign in to comment.