Skip to content

Commit

Permalink
Remove macos and windows as integration targets
Browse files Browse the repository at this point in the history
  • Loading branch information
mwallace582 committed Jan 9, 2024
1 parent 6a93e44 commit 43fd634
Showing 1 changed file with 0 additions and 31 deletions.
31 changes: 0 additions & 31 deletions .github/scripts/integration-test-matrix.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,24 +39,6 @@ module.exports = ({ context }) => {
"database-image": adapterImages[adapter],
"python-version": pythonVersion,
});

if (labels.includes("test windows") || testAllLabel) {
include.push({
os: "windows-latest",
adapter,
"database-image": adapterImages[adapter],
"python-version": pythonVersion,
});
}

if (labels.includes("test macos") || testAllLabel) {
include.push({
os: "macos-latest",
adapter,
"database-image": adapterImages[adapter],
"python-version": pythonVersion,
});
}
}
}
}
Expand Down Expand Up @@ -84,19 +66,6 @@ module.exports = ({ context }) => {
}
}

// additionally include runs for all adapters, on macos and windows,
// but only for the default python version
for (const adapter of supportedAdapters) {
for (const operatingSystem of ["windows-latest", "macos-latest"]) {
include.push({
os: operatingSystem,
adapter: adapter,
"database-image": adapterImages[adapter],
"python-version": defaultPythonVersion,
});
}
}

console.log("matrix", { include });

return {
Expand Down

0 comments on commit 43fd634

Please sign in to comment.