https://github.com/bukosabino/ta
Raw File
Tip revision: 379c7e3b7023a7f81559727dba3190bee8be4930 authored by Darío López Padial on 04 May 2020, 15:52:35 UTC
Merge pull request #151 from bukosabino/develop
Tip revision: 379c7e3
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