squeaknode/Makefile
Jonathan Zernik 6851466aed
Itest for squeaknodeclient (#3)
* Add itest for squeaknode client, not passing yet

* Got working itest with get wallet balance

* Change name of squeak node client class.
2020-03-01 00:15:24 -08:00

24 lines
329 B
Makefile

all: test
clean:
rm -rf build dist *.egg-info/ .tox/ target/ venv/ instance/
find . -name '*.pyc' -delete
find . -name '__pycache__' -delete
find . -name '*~' -delete
test:
tox
itest:
./itests/run_itest.sh
coverage:
tox -e coverage
mypy:
tox -e mypy
run:
tox -e run
.PHONY: all clean test itest coverage mypy run