mirror of
https://github.com/aljazceru/turso.git
synced 2025-12-18 09:04:19 +01:00
Eric from Antithesis pointed out that we can still find more states by running for longer, so let's try that.
11 lines
501 B
Bash
Executable File
11 lines
501 B
Bash
Executable File
#!/bin/sh
|
|
|
|
curl --fail -u "$ANTITHESIS_USER:$ANTITHESIS_PASSWD" \
|
|
-X POST https://$ANTITHESIS_TENANT.antithesis.com/api/v1/launch/limbo \
|
|
-d "{\"params\": { \"antithesis.description\":\"basic_test on main\",
|
|
\"custom.duration\":\"8\",
|
|
\"antithesis.config_image\":\"$ANTITHESIS_DOCKER_REPO/limbo-config:antithesis-latest\",
|
|
\"antithesis.images\":\"$ANTITHESIS_DOCKER_REPO/limbo-workload:antithesis-latest\",
|
|
\"antithesis.report.recipients\":\"$ANTITHESIS_EMAIL\"
|
|
} }"
|