blob: c3c3b9d0af8723c85a9fc51fe8a27d5ecfc78707 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
 | 
## Python Prototype
Use `pipenv` (which you can install with `pip`).
    pipenv run run.py --init-db
    pipenv run run.py
Run tests:
    pipenv run pytest
    # for coverage:
    pipenv run pytest --cov --cov-report html
 |