@@ -49,10 +49,15 @@ Install KaaS-specific requirements:
4949pip install -r kaas/requirements.txt
5050```
5151
52- Given a kubeconfig file ` path/to/kubeconfig.yaml ` , run
52+ Given a kubeconfig file ` path/to/kubeconfig.yaml ` , run all tests in parallel with:
5353
5454``` shell
55- ./scs-compliance-check.py -v -a kubeconfig=path/to/kubeconfig.yaml -a subject_root=. -s SUBJECT -o report.yaml scs-compatible-kaas.yaml
55+ ./scs-compliance-check.py -v -a kubeconfig=path/to/kubeconfig.yaml \
56+ -a subject_root=. \
57+ -a e2e-parallel=" --e2e-parallel=true" \
58+ -s SUBJECT \
59+ -o report.yaml \
60+ scs-compatible-kaas.yaml
5661```
5762
5863Replace ` SUBJECT ` with an arbitrary, but meaningful subject name. Also, please note that the check
@@ -64,6 +69,10 @@ Additionally, the directory `sono-results` will be generated. It contains a JUni
6469` plugins/e2e/results/global/junit_01.xml ` . You can render it to HTML with a tool like junit2html.
6570This might give you hints as to why a test failed.
6671
72+ If you need to run tests without parallelization simply remove ` -a e2e-parallel="--e2e-parallel=true" `
73+ or set it to ` false ` .
74+ Some additional information can be found [ here] ( https://github.com/vmware-tanzu/sonobuoy/issues/1435 ) .
75+
6776## Usage information (help output)
6877
6978``` text
@@ -183,7 +192,7 @@ We use a **layered approach** to allow for selective installation:
183192- at the very top we have ` test-requirements.in ` .
184193
185194Whenever you change or recompile one of these layers,
186- * all layers above that layer have to be recompiled as well * .
195+ _ all layers above that layer have to be recompiled as well _ .
187196
188197Note: The Python version used for running ` pip-compile ` should be consistent. The currently
189198used version is documented in the header of the ` requirements.txt ` . It should match the
0 commit comments