2020-05-04 15:20:36 +00:00
|
|
|
---
|
|
|
|
layout: default
|
|
|
|
title: For developers
|
2020-09-03 17:53:22 +00:00
|
|
|
nav_order: 4
|
2020-05-04 15:20:36 +00:00
|
|
|
has_children: true
|
|
|
|
---
|
|
|
|
|
|
|
|
|
|
|
|
For developers
|
|
|
|
==============
|
|
|
|
|
|
|
|
Thanks for contributing :)
|
2021-11-17 16:53:32 +00:00
|
|
|
|
|
|
|
|
|
|
|
Tests
|
|
|
|
=====
|
|
|
|
|
|
|
|
This project has unit tests that help prevent regressions. Before you can run the tests, you must install a few dependencies:
|
|
|
|
```bash
|
2022-07-07 16:29:26 +00:00
|
|
|
./venv/bin/pip install pytest pytest-asyncio pytest-cov requests mock
|
2021-11-17 16:53:32 +00:00
|
|
|
```
|
|
|
|
|
|
|
|
Then to run the tests:
|
|
|
|
```bash
|
|
|
|
make test
|
|
|
|
```
|