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
> Setting `--capture` flag (including `-s`) might cause traces to be missing from HTML report.
69
69
70
+
### Bazel execution
71
+
72
+
Run all Component Integration Tests:
73
+
74
+
```bash
75
+
bazel test //:cit_tests
76
+
```
77
+
78
+
When the dependencies in [requirements.txt](python_test_cases/requirements.txt) file are manually modified, the user should invoke command and commit changes:
79
+
80
+
```bash
81
+
bazel run //tests/python_test_cases:requirements.update
82
+
```
83
+
84
+
In order to update all dependencies use:
85
+
86
+
```bash
87
+
bazel run //tests/python_test_cases:requirements.update -- --upgrade
88
+
```
89
+
70
90
## Standalone execution of test scenarios
71
91
72
92
Test scenarios can be run independently from `pytest`.
0 commit comments