rrl*_*ane 3 python git pre-commit python-black pre-commit.com
我正在运行 git pre-commit并运行 black 作为钩子之一。
现在,当我运行时commit,黑色失败并说:
All done! ? ?
15 files reformatted, 1 file left unchanged.
Run Code Online (Sandbox Code Playgroud)
我查看了重新格式化的文件,我对它们很好。所以我暂存这些文件并commit再次尝试运行,但我不断收到与上述相同的消息。我尝试了以下命令但没有成功。
git add .
git add -A
git add -u
Run Code Online (Sandbox Code Playgroud)
这是我的.pre-commit-config.yaml文件:
repos:
- repo: https://github.com/psf/black
rev: 19.10b0
hooks:
- id: black
language_version: python3.6
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v2.5.0
hooks:
- id: check-merge-conflict
- id: check-docstring-first
- id: check-json
- id: check-yaml
- id: debug-statements
- id: double-quote-string-fixer
- id: end-of-file-fixer
- id: name-tests-test
args: [--django]
- id: requirements-txt-fixer
- id: trailing-whitespace
- repo: https://gitlab.com/pycqa/flake8
rev: 3.7.9
hooks:
- id: flake8
additional_dependencies: [flake8-typing-imports==1.6.0]
- repo: https://github.com/asottile/reorder_python_imports
rev: v1.4.0
hooks:
- id: reorder-python-imports
args: [--py3-plus]
- repo: https://github.com/Lucas-C/pre-commit-hooks-bandit
rev: v1.0.4
hooks:
- id: python-bandit-vulnerability-check
args: [-l, --recursive, -x, tests]
files: .py$
- repo: local
hooks:
- id: tests
name: run tests
entry: venv/bin/pytest -v -m fast
language: python
additional_dependencies: [pre-commit, pytest]
always_run: true
pass_filenames: false
types: [python]
stages: [commit]
- repo: local
hooks:
- id: tests
name: run tests
entry: venv/bin/pytest -x
language: system
types: [python]
stages: [push]
Run Code Online (Sandbox Code Playgroud)
当我做 git status --short 时,我得到这个:
M .pre-commit-config.yaml
M pytest.ini
M setup.cfg
RM tests/tests_report.html -> tests/commit_pytest_report.html
R report.html -> tests/commit_tests_report.html
AM tests/coverage/index.html
A tests/coverage/file_1.png
Run Code Online (Sandbox Code Playgroud)
当我跑步时git commit -m "test",跑步git add .后git add -A,,或git add -u;我明白了:
black....................................................................Failed
- hook id: black
- files were modified by this hook
reformatted <filename>
...
All done! ? ?
15 files reformatted, 1 file left unchanged.
Check for merge conflicts................................................Passed
Check docstring is first.................................................Passed
Check JSON...............................................................Passed
Check Yaml...............................................................Passed
Debug Statements (Python)................................................Passed
Fix double quoted strings................................................Failed
- hook id: double-quote-string-fixer
- exit code: 1
- files were modified by this hook
Fixing strings in <file_name>
...
Fix End of Files.........................................................Failed
- hook id: end-of-file-fixer
- exit code: 1
- files were modified by this hook
Fixing <file_name>
...
Tests should end in _test.py.............................................Passed
Fix requirements.txt.................................(no files to check)Skipped
Trim Trailing Whitespace.................................................Passed
flake8...................................................................Failed
- hook id: flake8
- exit code: 1
<file_name>: <some flake8 error>
...
Reorder python imports...................................................Passed
bandit...................................................................Passed
run tests................................................................Failed
- hook id: tests
- files were modified by this hook
============================= test session starts ==============================
platform darwin -- Python 3.6.9, pytest-5.4.1, py-1.8.1, pluggy-0.13.1
<test details>
(0.00 durations hidden. Use -vv to show these durations.)
====================== 2 passed, 113 deselected in 2.51s =======================
Run Code Online (Sandbox Code Playgroud)
我不确定我做错了什么;git 似乎没有用黑色格式更新我的提交。我通过谷歌研究找不到任何东西。谢谢!
看来你正在使用black和double-quote-strings-fixer一起
skip-string-normalizationin来禁用它pyproject.toml)如果两个格式化程序发生冲突,最终结果将是失败,因为预提交检查以确保一切都得到解决
免责声明:我是 pre-commit 和 pre-commit-hooks 的作者
| 归档时间: |
|
| 查看次数: |
4018 次 |
| 最近记录: |