runrate-lab / Makefile
ramanaprabhusana's picture
Deploy RunRate Lab cricket analytics coach
16a19cb verified
raw
history blame contribute delete
358 Bytes
.PHONY: install run test check
install:
python3 -m venv .venv
.venv/bin/python -m pip install --upgrade pip
.venv/bin/python -m pip install -r requirements.txt
run:
.venv/bin/streamlit run app.py
test:
.venv/bin/python -m unittest discover -s tests
check:
.venv/bin/python -m compileall app.py tests
.venv/bin/python -m unittest discover -s tests