63d4e60542
* try postgres run * fix yaml * test with postgres * check with postgres * inkey_from * remove trio * add coverage * add coverage * more python testing * use @pytest_asyncio.fixture * remove unused imports * fix api_payment payment lookup * measure durations
27 lines
407 B
Markdown
27 lines
407 B
Markdown
---
|
|
layout: default
|
|
title: For developers
|
|
nav_order: 4
|
|
has_children: true
|
|
---
|
|
|
|
|
|
For developers
|
|
==============
|
|
|
|
Thanks for contributing :)
|
|
|
|
|
|
Tests
|
|
=====
|
|
|
|
This project has unit tests that help prevent regressions. Before you can run the tests, you must install a few dependencies:
|
|
```bash
|
|
./venv/bin/pip install pytest pytest-asyncio pytest-cov requests mock
|
|
```
|
|
|
|
Then to run the tests:
|
|
```bash
|
|
make test
|
|
```
|