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: CONTRIBUTING.md
+13
Original file line number
Diff line number
Diff line change
@@ -113,6 +113,19 @@ e.g:
113
113
dotnet test --environment="REDIS=127.17.0.1:6379"
114
114
```
115
115
116
+
Most of the integration tests rely on specific server capabilities,
117
+
so, to be able run matching test cases properly you will need to set `REDIS_VERSION` variable with your actual server version that tests running against.
118
+
```bash
119
+
dotnet test --environment="REDIS=<redisServer:port>" --environment="REDIS_VERSION=<redisServerVersion>"
120
+
```
121
+
e.g:
122
+
```bash
123
+
dotnet test --environment="REDIS=127.17.0.1:6379" --environment="REDIS_VERSION=7.4.0"
124
+
```
125
+
126
+
If you are relying on an IDE to run the tests, then you can set these parameters in [.runsettings](.vscode/.runsettings) file.
127
+
You also need to check if your IDE supports [settings.json](.vscode/settings.json) for this to work.
128
+
116
129
To run your tests against an oss cluster:
117
130
```bash
118
131
dotnet test --environment "REDIS_CLUSTER=<redisServer:port>" --environment "NUM_REDIS_CLUSTER_NODES=<number of nodes in the cluster>"
0 commit comments