mirror of
https://github.com/wassname/pandas-ta.git
synced 2026-06-27 16:10:07 +08:00
14 lines
256 B
Makefile
14 lines
256 B
Makefile
clean:
|
|
find . -name '*.pyc' -exec rm -f {} +
|
|
|
|
caches:
|
|
find ./pandas_ta | grep -E "(__pycache__|\.pyc|\.pyo$\)"
|
|
|
|
init:
|
|
pip install -r requirements.txt
|
|
|
|
ti:
|
|
python -m unittest -v tests/test_indicator*.py
|
|
|
|
ts:
|
|
python -m unittest -v tests/test_strategy.py
|