Skip to content

Commit 73c7fbd

Browse files
authored
Merge branch 'main' into feat/client-async-context-manager-and-close-689
2 parents 5844216 + cced34d commit 73c7fbd

1 file changed

Lines changed: 6 additions & 13 deletions

File tree

Gemini.md renamed to GEMINI.md

Lines changed: 6 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -3,25 +3,18 @@
33
## Project frameworks
44
- uv as package manager
55

6-
## How to run all tests
7-
1. If dependencies are not installed, install them using the following command
8-
```
9-
uv sync --all-extras
10-
```
11-
12-
2. Run tests
13-
```
14-
uv run pytest
15-
```
16-
17-
## Other instructions
6+
## Code style and mandatory checks
187
1. Whenever writing python code, write types as well.
198
2. After making the changes run ruff to check and fix the formatting issues
209
```
2110
uv run ruff check --fix
11+
uv run ruff format
2212
```
2313
3. Run mypy type checkers to check for type errors
2414
```
25-
uv run mypy
15+
uv run mypy src
2616
```
2717
4. Run the unit tests to make sure that none of the unit tests are broken.
18+
```
19+
uv run pytest
20+
```

0 commit comments

Comments
 (0)