Skip to content

Commit a8cbc49

Browse files
authored
Adding notes on REDIS_VERSION (#393)
* notes on adding REDIS_VERSION * update wordlist
1 parent 07caabc commit a8cbc49

File tree

3 files changed

+18
-1
lines changed

3 files changed

+18
-1
lines changed

.github/wordlist.txt

+1
Original file line numberDiff line numberDiff line change
@@ -23,3 +23,4 @@ TimeSeries
2323
triaging
2424
www
2525
yml
26+
runsettings

CONTRIBUTING.md

+13
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,19 @@ e.g:
113113
dotnet test --environment="REDIS=127.17.0.1:6379"
114114
```
115115

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+
116129
To run your tests against an oss cluster:
117130
```bash
118131
dotnet test --environment "REDIS_CLUSTER=<redisServer:port>" --environment "NUM_REDIS_CLUSTER_NODES=<number of nodes in the cluster>"

README.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -154,9 +154,12 @@ ft.DropIndex("myIndex");
154154

155155
More examples can be found in the [examples folder](Examples).
156156

157+
## For Contributors
158+
To contribute NRedisStack, please see :point_right: [Contribution notes](CONTRIBUTING.md)
159+
157160
------
158161

159-
### Author
162+
# Author
160163

161164
NRedisStack is developed and maintained by [Redis Inc](https://redis.com). It can be found [here](
162165
https://github.com/redis/NRedisStack), or downloaded from [NuGet](https://www.nuget.org/packages/NRedisStack).

0 commit comments

Comments
 (0)