Spaces:
Sleeping
Sleeping
File size: 340 Bytes
5238467 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
default: linter tests
install:
pip install -U pip
pip install -U -e '.[dev]'
linter:
flake8 audiocraft && mypy audiocraft
flake8 tests && mypy tests
tests:
coverage run -m pytest tests
coverage report --include 'audiocraft/*'
docs:
pdoc3 --html -o docs -f audiocraft
dist:
python setup.py sdist
.PHONY: linter tests docs dist
|