Spaces:
Runtime error
Runtime error
File size: 256 Bytes
e67fa80 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
install:
pip install --upgrade pip &&\
pip install -r requirements.txt
test:
python -m pytest test_search.py
format:
black *.py
black mylib/*.py
lint:
pylint --disable=R,C,W0108 mylib/*.py
#all: install lint test
all: install lint test format |