Skip to content

Commit 96b906d

Browse files
author
matmoncon
committed
docs: update README
1 parent 54a2b13 commit 96b906d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424
Things to come in the future. Truly exiting stuff! If you have feature requests which you think might improve `pyneo4j-ogm`, feel free to open up a feature request.
2525

26-
- [ ] Auto-generated migrations
26+
- [ ] [MemGraph](https://memgraph.com/) support.
2727

2828
## 📦 Installation
2929

@@ -368,16 +368,16 @@ In the following we are going to take a closer look at the different parts of `p
368368

369369
### Running the test suite
370370

371-
To run the test suite, you have to install the development dependencies and run the tests using `pytest`. The tests are located in the `tests` directory. Any tests located in the `tests/integration` directory will require you to have a Neo4j instance running on `localhost:7687` with the credentials (`neo4j:password`). This can easily be done using the provided `docker-compose.yml` file.
371+
To run the test suite, you have to install the development dependencies and run the tests using `pytest`. The tests are located in the `tests` directory. Some tests will require you to have a Neo4j instance running on `localhost:7687` with the credentials (`neo4j:password`). This can easily be done using the provided `docker-compose.yml` file.
372372

373373
```bash
374374
poetry run pytest tests --asyncio-mode=auto -W ignore::DeprecationWarning
375375
```
376376

377377
> **Note:** The `-W ignore::DeprecationWarning` can be omitted but will result in a lot of deprication warnings by Neo4j itself about the usage of the now deprecated `ID`.
378378
379-
As for running the tests with a different pydantic version, you can just run the following command locally:
379+
As for running the tests with a different pydantic version, you can just install a different pydantic version with the following command:
380380

381381
```bash
382-
poetry add pydantic@1.10
382+
poetry add pydantic@<version>
383383
```

0 commit comments

Comments
 (0)