Skip to content

Commit ae6562e

Browse files
update ci
1 parent b4e02e1 commit ae6562e

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

.github/workflows/unit-test.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,5 +21,7 @@ jobs:
2121
python-version: ${{ matrix.python-version }}
2222
- name: Install uv
2323
run: make install-uv
24+
- name: Run Checks
25+
run: make check
2426
- name: Run Unit Tests
25-
run: uv run pytest test/unit
27+
run: make unittest

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -488,13 +488,13 @@ export "PATH=/venv/root/folder/bin:$PATH"
488488
#### Unit
489489
490490
```bash
491-
uv run pytest test/unit
491+
make unittest
492492
```
493493
494494
Run in parallel (2 threads)
495495
496496
```bash
497-
uv run pytest -n 2 test/unit
497+
make unittest ARGS="-n 2"
498498
```
499499
500500
#### Functional

0 commit comments

Comments
 (0)