Spaces:
jbilcke-hf
/
Running on A10G

MusicGen / Makefile
jbilcke-hf's picture
jbilcke-hf HF staff
Duplicate from facebook/MusicGen
ee8c66a
raw history blame
No virus
340 Bytes
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