We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
interrogate
interrogate --version
I'm planning on using interrogate as part of our CI/CD process. Thus I will run the following for a PR, only checking files that have changed:
interrogate -c pyproject.toml -vv $(gh pr view NUMBER --json files --jq '.files | map(select(.path | endswith(".py"))) | .[].path')
pyproject.toml contains exclude definitions which are not adhered to if files are passed into via args.
pyproject.toml
exclude
[tool.interrogate] exclude = ["test.py"]
interrogate -c pyproject.tom -vv test.py E: No Python files found to interrogate
touch test.py echo "[tool.interrogate]\nexclude = [\"test.py\"]" > pyproject.toml interrogate -c pyproject.toml -vv test.py
The text was updated successfully, but these errors were encountered:
See #159
Sorry, something went wrong.
econchick
No branches or pull requests
Environment
interrogate
version(s) (interrogate --version
:Description of the bug
I'm planning on using interrogate as part of our CI/CD process. Thus I will run the following for a PR, only checking files that have changed:
pyproject.toml
containsexclude
definitions which are not adhered to if files are passed into via args.What you expected to happen
How to reproduce (as minimally and precisely as possible)
Anthing else we need to know?
The text was updated successfully, but these errors were encountered: