We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent be0fcee commit f7e561cCopy full SHA for f7e561c
.github/workflows/ci.yml
@@ -166,4 +166,7 @@ jobs:
166
cd integration/${{ matrix.suite }}
167
bun uninstall replicate
168
bun install "file:../../${{ needs.build.outputs.tarball-name }}"
169
- bun test --timeout 30000
+ retries=3
170
+ for ((i=0; i<retries; i++)); do
171
+ bun test && break || echo "Test failed, retrying..."
172
+ done
integration/bun/index.ts
@@ -15,6 +15,7 @@ export default async function main() {
15
const output = [];
16
17
for await (const { event, data } of replicate.stream(model, options)) {
18
+ console.log({ event, data });
19
if (event === "output") {
20
output.push(data);
21
}
0 commit comments