Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 9 additions & 6 deletions docs/development.md
Original file line number Diff line number Diff line change
@@ -1,20 +1,23 @@

# Development

To run the development dependencies use
See the [tskit developer documentation](https://tskit.dev/tskit/docs/stable/development.html)
for the general development workflow (git, prek, testing, documentation).

Install development dependencies with:

```
python3 -m pip install .[dev]
$ uv sync
```

To run the unit tests, use
Run the unit tests with:

```
python3 -m pytest
$ uv run pytest
```

You may need to regenerate some cached test fixtures occasionaly (particularly
if getting cryptic errors when running the test suite). To do this, run
You may need to regenerate some cached test fixtures occasionally (particularly
if getting cryptic errors when running the test suite). To do this, run:

```
rm -fR tests/data/cache/
Expand Down