Add PerVariableTransformer

This commit is contained in:
2019-12-20 14:18:26 -06:00
parent 3ef1733334
commit e4526bc724
13 changed files with 418 additions and 105 deletions

9
Makefile Normal file
View File

@@ -0,0 +1,9 @@
PYTEST_ARGS := -W ignore::DeprecationWarning --capture=no -vv
test:
pytest $(PYTEST_ARGS)
test-watch:
pytest-watch -- $(PYTEST_ARGS)
.PHONY: test test-watch