Skip to content

Commit 3d48040

Browse files
committed
Provide both uv- and non-uv variants of testing commands
1 parent 0b75028 commit 3d48040

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

README.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,13 +82,25 @@ LDFLAGS=-lwasi-emulated-mman \
8282
```bash
8383
python scrapscript_tests.py
8484
```
85+
or
86+
```bash
87+
uv run python scrapscript_tests.py
88+
```
8589

8690
## Type Checking the Python Sources
8791
```bash
92+
mypy --strict scrapscript.py
93+
```
94+
or
95+
```
8896
uv run mypy --strict scrapscript.py
8997
```
9098

9199
## Formatting the Python Sources
92100
```bash
93101
ruff format scrapscript.py
94102
```
103+
or
104+
```bash
105+
uv run ruff format scrapscript.py
106+
```

0 commit comments

Comments
 (0)