A cross-platform command-line utility that creates projects from cookiecutters (project templates), e.g. Python package projects, C projects - a cookiecutter fork
BSD 3-Clause "New" or "Revised" License
68
stars
7
forks
source link
`pre-commit run --all` fails on check-manifest #76
Running pre-commit run --all fails with this message:
check-manifest...........................................................Failed
- hook id: check-manifest
- exit code: 1
lists of files in version control and sdist do not match!
missing from VCS:
tests/.coverage
tests/.coverage is excluded in .gitignore but not in 'MANIFEST.in'
We can either
exclude tests from sdists (some projects do it, some consider it a bad practice)
exclude tests/.coverage
recursively exclude . or tests .
I can make a PR but I never had to maintain a manifest, and I'm not sure which would be preferable.
Running
pre-commit run --all
fails with this message:tests/.coverage
is excluded in.gitignore
but not in 'MANIFEST.in'We can either
I can make a PR but I never had to maintain a manifest, and I'm not sure which would be preferable.