Spaces:
Runtime error
Runtime error
install: | |
pip install --upgrade pip &&\ | |
pip install -r requirements.txt | |
test: | |
python -m pytest -vv --cov=hello test_hello.py | |
format: | |
black *.py | |
lint: | |
pylint --disable=R,C hello.py | |
all: install lint test format |