Spaces:
Sleeping
Sleeping
File size: 358 Bytes
16a19cb | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | .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
|