Skip to content

Commit abf22c5

Browse files
committed
Remove google cost analyzer tests, which are too flaky for ci.
1 parent 1ef74a3 commit abf22c5

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

cost-analyzer-comparison-ts/index.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,15 @@ async function work(faastModule: FaastModule<typeof funcs>) {
99
await faastModule.functions.random(1000000);
1010
}
1111

12-
const memorySizes = [256, 512, 1024, 1728, 2048];
12+
const memorySizes = [1024, 1728, 2048];
1313

1414
const configurations = [
1515
...CostAnalyzer.awsConfigurations.filter(c =>
1616
memorySizes.find(m => m === c.options.memorySize!)
17-
),
18-
...CostAnalyzer.googleConfigurations.filter(c =>
19-
memorySizes.find(m => m === c.options.memorySize!)
2017
)
18+
// ...CostAnalyzer.googleConfigurations.filter(c =>
19+
// memorySizes.find(m => m === c.options.memorySize!)
20+
// )
2121
];
2222

2323
async function compareCloudCosts() {

0 commit comments

Comments
 (0)