Skip to content

Commit

Permalink
Update developer docs (valkey-io#2354)
Browse files Browse the repository at this point in the history
  • Loading branch information
Yury-Fridlyand authored Oct 4, 2024
1 parent 1496c84 commit fb51ba6
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
7 changes: 7 additions & 0 deletions node/DEVELOPER.md
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,13 @@ To run tests, use the following command:
npm test
```
To execute a specific test, include the [`testNamePattern`](https://jestjs.io/docs/cli#--testnamepatternregex) option. For example:
```bash
npm run test -- --testNamePattern="transaction"
```
IT suite starts the server for testing - standalone and cluster installation using `cluster_manager` script.
To run the integration tests with existing servers, run the following command:
```bash
Expand Down
7 changes: 7 additions & 0 deletions python/DEVELOPER.md
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,13 @@ To execute a specific test, include the `-k <test_name>` option. For example:
pytest --asyncio-mode=auto -k test_socket_set_and_get
```
IT suite starts the server for testing - standalone and cluster installation using `cluster_manager` script.
If you want IT to use already started servers, use the following command line from `python/python` dir:
```bash
pytest --asyncio-mode=auto --cluster-endpoints=localhost:7000 --standalone-endpoints=localhost:6379
```
### Submodules
After pulling new changes, ensure that you update the submodules by running the following command:
Expand Down

0 comments on commit fb51ba6

Please sign in to comment.