testdriverai 6.1.5-canary.0be6d16.0 → 6.1.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -11,8 +11,7 @@ graph LR
|
|
|
11
11
|
B <--> C[Your AWS EC2 Instance]
|
|
12
12
|
```
|
|
13
13
|
|
|
14
|
-
Self-hosting TestDriver allows you to run tests on your own infrastructure, giving you full control over the environment, security, and configurations.
|
|
15
|
-
This guide walks you through setting up and managing self-hosted TestDriver instances using AWS.
|
|
14
|
+
Self-hosting TestDriver allows you to run tests on your own infrastructure, giving you full control over the environment, security, and configurations. This guide walks you through setting up and managing self-hosted TestDriver instances using AWS.
|
|
16
15
|
|
|
17
16
|
## Why self host?
|
|
18
17
|
|
|
@@ -65,8 +64,7 @@ aws cloudformation deploy \
|
|
|
65
64
|
```
|
|
66
65
|
|
|
67
66
|
<Danger>
|
|
68
|
-
**Security**: Replace `AllowedIngressCidr=0.0.0.0/0` with your specific IP
|
|
69
|
-
ranges to lock down access to your VPC.
|
|
67
|
+
**Security**: Replace `AllowedIngressCidr=0.0.0.0/0` with your specific IP ranges to lock down access to your VPC.
|
|
70
68
|
</Danger>
|
|
71
69
|
|
|
72
70
|
### Get Launch Template ID
|
|
@@ -170,7 +168,7 @@ jobs:
|
|
|
170
168
|
|
|
171
169
|
- name: Run TestDriver
|
|
172
170
|
run: |
|
|
173
|
-
|
|
171
|
+
npx testdriverai run your-test.yaml \
|
|
174
172
|
--ip="${{ steps.aws-setup.outputs.public-ip }}"
|
|
175
173
|
env:
|
|
176
174
|
TD_API_KEY: ${{ secrets.TD_API_KEY }}
|
|
@@ -302,4 +300,4 @@ For enterprise customers:
|
|
|
302
300
|
|
|
303
301
|
- Contact your account manager for AMI access issues
|
|
304
302
|
- Use support channels for infrastructure questions
|
|
305
|
-
- Check the TestDriver documentation for CLI usage
|
|
303
|
+
- Check the TestDriver documentation for CLI usage
|