https://github.com/bukosabino/ta
Raw File
Tip revision: f3ec5bbfc93ac610e967a87d128bbfcdf7c43082 authored by Darío López Padial on 29 March 2020, 17:17:14 UTC
Update release.md
Tip revision: f3ec5bb
Makefile
init:
	pip install -r requirements.txt

lint:
	pycodestyle --max-line-length=119 ta && isort --check-only --recursive ta

isort-fix:
	isort --recursive ta

test: lint
	# python -m unittest discover
	coverage run tests.py
	coverage report -m
back to top