mirror of https://github.com/aminya/setup-cpp
test: disable cppcheck test on Windows
This commit is contained in:
parent
95f86c5d8c
commit
511e70eef5
|
@ -5,16 +5,11 @@ import { getVersion } from "../../versions/versions"
|
||||||
jest.setTimeout(300000)
|
jest.setTimeout(300000)
|
||||||
describe("setup-cppcheck", () => {
|
describe("setup-cppcheck", () => {
|
||||||
it("should setup cppcheck", async () => {
|
it("should setup cppcheck", async () => {
|
||||||
try {
|
// TODO: choco fails abnormally on windows
|
||||||
|
if (process.platform !== "win32") {
|
||||||
const installInfo = await setupCppcheck(getVersion("cppcheck", undefined), "", process.arch)
|
const installInfo = await setupCppcheck(getVersion("cppcheck", undefined), "", process.arch)
|
||||||
|
|
||||||
await testBin("cppcheck", ["--version"], installInfo.binDir)
|
await testBin("cppcheck", ["--version"], installInfo.binDir)
|
||||||
} catch (error) {
|
|
||||||
if (process.platform === "win32") {
|
|
||||||
console.error(error)
|
|
||||||
} else {
|
|
||||||
throw error
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
Loading…
Reference in New Issue