You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: test/e2e/README.md
+7-8Lines changed: 7 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -40,9 +40,10 @@ You also have to export `CLOUDSTACK_B64ENCODED_SECRET` environment variable usin
40
40
api-key = XXXXX
41
41
secret-key = XXXXX
42
42
api-url = http://192.168.1.96:8080/client/api
43
+
verify-ssl = true or false
43
44
```
44
45
45
-
The api-key and secret-key can be found or generated at Home > Accounts > admin > Users > admin of the ACS management UI.
46
+
The api-key and secret-key can be found or generated at Home > Accounts > admin > Users > admin of the ACS management UI. `verify-ssl` is an optional flag and its default value is true. CAPC skips verifying the host SSL certificates when the flag is set to false.
46
47
47
48
### Running the e2e tests
48
49
@@ -51,14 +52,12 @@ Run the following command to execute the CAPC e2e tests:
51
52
```shell
52
53
make run-e2e
53
54
```
54
-
This command runs all e2e test cases except k8s conformance testing
55
+
This command runs all e2e test cases.
55
56
56
-
```shell
57
-
make run-e2e-pr-blocking
58
-
```
59
-
This command runs the quick e2e tests for the sanity checks
57
+
You can specify JOB environment variable which value is a regular expression to select test cases to execute.
58
+
For example,
60
59
61
60
```shell
62
-
make run-conformance
61
+
JOB=PR-Blocking make run
63
62
```
64
-
This command runs the k8s conformance testing
63
+
This command runs the e2e tests that contains `PR-Blocking` in their spec names.
0 commit comments