https://github.com/bukosabino/ta
Raw File
Tip revision: 0fe94c2c9173ca096665b7bd6d55b811449805d6 authored by Darío López Padial on 03 May 2020, 11:54:33 UTC
Merge pull request #147 from bukosabino/develop
Tip revision: 0fe94c2
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