We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b4e02e1 commit ae6562eCopy full SHA for ae6562e
.github/workflows/unit-test.yml
@@ -21,5 +21,7 @@ jobs:
21
python-version: ${{ matrix.python-version }}
22
- name: Install uv
23
run: make install-uv
24
+ - name: Run Checks
25
+ run: make check
26
- name: Run Unit Tests
- run: uv run pytest test/unit
27
+ run: make unittest
README.md
@@ -488,13 +488,13 @@ export "PATH=/venv/root/folder/bin:$PATH"
488
#### Unit
489
490
```bash
491
-uv run pytest test/unit
+make unittest
492
```
493
494
Run in parallel (2 threads)
495
496
497
-uv run pytest -n 2 test/unit
+make unittest ARGS="-n 2"
498
499
500
#### Functional
0 commit comments