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
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -23,7 +23,7 @@
23
23
24
24
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.
25
25
26
-
-[ ]Auto-generated migrations
26
+
-[ ][MemGraph](https://memgraph.com/) support.
27
27
28
28
## 📦 Installation
29
29
@@ -368,16 +368,16 @@ In the following we are going to take a closer look at the different parts of `p
368
368
369
369
### Running the test suite
370
370
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.
372
372
373
373
```bash
374
374
poetry run pytest tests --asyncio-mode=auto -W ignore::DeprecationWarning
375
375
```
376
376
377
377
> **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`.
378
378
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:
0 commit comments