https://github.com/bukosabino/ta
Raw File
Tip revision: ce135b0211057f243535bb98ed8bacd6ad554614 authored by Bukosabino on 12 March 2020, 15:06:01 UTC
fixing bug: hard-coded values. Based on: https://github.com/bukosabino/ta/issues/114 and https://github.com/bukosabino/ta/issues/115
Tip revision: ce135b0
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