Skip to content

Commit 3ad2503

Browse files
authored
docs: GEMINI.md updates (#729)
- Rename to `GEMINI.md` (in capital). - Refine instructions.
1 parent d2d3860 commit 3ad2503

1 file changed

Lines changed: 5 additions & 12 deletions

File tree

Gemini.md renamed to GEMINI.md

Lines changed: 5 additions & 12 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
```
2515
uv run mypy
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)