sections_fts: 26
This data as json
| rowid | title | content |
|---|---|---|
| 26 | Running the tests | Once you have done this, you can run the Datasette unit tests from inside your datasette/ directory using pytest like so: uv run pytest You can run the tests faster using multiple CPU cores with pytest-xdist like this: uv run pytest -n auto -m "not serial" -n auto detects the number of available cores automatically. The -m "not serial" skips tests that don't work well in a parallel test environment. You can run those tests separately like so: uv run pytest -m "serial" |