Files
pandas-ta/Makefile
T
2020-09-30 15:35:33 -07:00

31 lines
558 B
Makefile

.PHONY: all
all:
make test_utils
make test_metrics
make test_ta
make test_ext
make test_strats
caches:
find ./pandas_ta | grep -E "(__pycache__|\.pyc|\.pyo$\)"
clean:
find . -name '*.pyc' -exec rm -f {} +
init:
pip install -r requirements.txt
test_ext:
python -m unittest -v tests/test_ext_indicator_*.py
test_metrics:
python -m unittest -v tests/test_utils_metrics.py
test_strats:
python -m unittest -v tests/test_strategy.py
test_ta:
python -m unittest -v tests/test_indicator_*.py
test_utils:
python -m unittest -v tests/test_utils.py