blob: dbf6aef7ea02b42bc229da71b614194e5c850cf7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
__ _ _
/ _| __ _| |_ ___ __ _| |_
| |_ / _` | __/ __/ _` | __|
| _| (_| | || (_| (_| | |_
|_| \__,_|\__\___\__,_|\__|
... catalog all the things!
This is just a concept for now; see [rfc](./rfc).
## 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
|