You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+21Lines changed: 21 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -47,6 +47,27 @@ For more examples, see the [examples](examples) directory.
47
47
48
48
The API documentation is available at [https://wokwi.github.io/wokwi-python-client/](https://wokwi.github.io/wokwi-python-client/).
49
49
50
+
## Development
51
+
52
+
To run the tests, set the `WOKWI_CLI_TOKEN` environment variable (you can get a token from [https://wokwi.com/dashboard/ci](https://wokwi.com/dashboard/ci)) and run the following command:
53
+
54
+
```bash
55
+
hatch run dev:pytest
56
+
```
57
+
58
+
To run the linter, run the following command:
59
+
60
+
```bash
61
+
hatch run ruff format --check .
62
+
hatch run ruff check .
63
+
```
64
+
65
+
To run the type checker, run the following command:
66
+
67
+
```bash
68
+
hatch run mypy .
69
+
```
70
+
50
71
## License
51
72
52
73
This project is licensed under the MIT License. See the [LICENSE](LICENSE) file for details.
0 commit comments