Skip to content

Commit 75efdd2

Browse files
author
matmoncon
committed
Merge branch 'main' into develop
2 parents 39e11e4 + 77d0a28 commit 75efdd2

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
strategy:
1818
fail-fast: false
1919
matrix:
20-
python-version: ["3.10", "3.11"]
20+
python-version: ["3.10", "3.11", "3.12"]
2121

2222
steps:
2323
- uses: actions/checkout@v3

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-
- [ ] [MemGraph](https://memgraph.com/) support.
26+
- [ ] Auto-generated migrations
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. 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.
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.
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 install a different pydantic version with the following command:
379+
As for running the tests with a different pydantic version, you can just run the following command locally:
380380

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

0 commit comments

Comments
 (0)