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: README.md
+24Lines changed: 24 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -101,6 +101,30 @@ $ make
101
101
$ make install
102
102
```
103
103
104
+
#### Testing
105
+
106
+
The project includes a basic set of integration tests.
107
+
108
+
109
+
**Integration tests**
110
+
111
+
112
+
Integration tests are based on [RLTest](https://github.com/RedisLabsModules/RLTest), and specific setup parameters can be provided
113
+
to configure tests and topologies (OSS standalone and OSS cluster). By default the tests will be ran for all common commands, and with OSS standalone setup.
114
+
115
+
116
+
To run all integration tests in a Python virtualenv, follow these steps:
117
+
118
+
$ mkdir -p .env
119
+
$ virtualenv .env
120
+
$ source .env/bin/activate
121
+
$ pip install -r tests/test_requirements.txt
122
+
$ ./tests/run_tests.sh
123
+
124
+
To understand what test options are available simply run:
0 commit comments