项目文件夹

文件
T
Alexandre Défossez 5238467a52 Initial commit
2023-06-09 08:35:16 +03:00

22 行
340 B
Makefile

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