Files @ 2b550a20373b
Branch filter:

Location: NPO-Accounting/conservancy_beancount/tox.ini

Brett Smith
cliutil: Start module.

We're probably going to have a small handful of reporting tools.
This module has all the stuff I end up putting in all of them.
[tox]
envlist = py36,py37

[testenv]
# Beancount includes type declarations but not the `py.typed` flag file mypy
# is looking for to know that. Create it ourselves.
commands_pre = python -c 'import beancount, pathlib; pathlib.Path(beancount.__file__).with_name("py.typed").touch()'

commands =
  ./setup.py test
  ./setup.py typecheck