xch-blockchain/.pre-commit-config.yaml

72 lines
1.8 KiB
YAML
Raw Normal View History

repos:
tests|github|pre-commit: Improve `build-workflows.py` and make it a `pre-commit` hook (#8728) * tests: Move `default_replacements` into `generate_replacements` * tests: Directly use `root_test_dirs` Instead of passing it into `subdirs` * tests: Make `build-workflow.py` callable from everywhere * tests: Adjust the output of `build-workflows.py` * tests: Add `-f` to `build-workflows.py` to allow failing on CI * github: Run `build-workflows.py` * pre-commit: Run `build-workflows.py` as first hook * tests: Skip DID wallet tests until they are reliable and fixed * tests: Skip `test_using_legacy_cryptfilekeyring` * tests|github: Drop `root_test_dirs` and just search in all directories This removes the requirement to add new test directories to the `testconfig.py`. This change uncovered two more tests which were not enabled on CI because their parent dir's were not added to `root_test_dirs`. - `tests/weight_proof/test_weight_proof.py` - `tests/util/test_struct_stream.py` * tests|github: Don't list test files, use `tests/dir/tests_*.py` instead * test: Improve workflow update checks by comparing old vs new Instead of doing a `git diff` which can lead to false positives if there are other local changes unlrelated to test workflows. This also fixes the issue that newly added files were not tracked by `git diff` which means the script / the CI would trigger an alert. * tests: Adjust `build-workflows.py` to work as expected on windows * tests: Read/Write in bytes to avoid and detect unexpected `\r\n` * tests: Skip `test_pool_cmdline.py`
2021-11-09 19:57:40 +01:00
- repo: local
hooks:
- id: check-sql
name: Validate SQL statements
entry: python3 -m tests.check_sql_statements
language: python
pass_filenames: false
- repo: local
hooks:
- id: init_py_files
name: __init__.py files
entry: python3 tests/build-init-files.py -v --root .
language: python
pass_filenames: false
additional_dependencies: [click~=7.1]
- repo: https://github.com/psf/black
rev: 23.3.0
hooks:
- id: black
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.3.0
hooks:
- id: check-yaml
- id: mixed-line-ending
args: ["--fix=lf"]
- id: end-of-file-fixer
exclude: ".*?(.hex|.clsp|.clvm|.clib)"
- id: trailing-whitespace
- id: check-merge-conflict
- id: check-ast
- id: debug-statements
- repo: local
hooks:
- id: clvm_hex
name: .clsp.hex files
entry: ./activated.py python tools/manage_clvm.py check
language: python
pass_filenames: false
- repo: local
hooks:
- id: chialispp
name: Pretty print chialisp files
entry: ./activated.py python tools/chialispp.py .
language: python
pass_filenames: false
- repo: local
hooks:
- id: build mypy.ini
name: build mypy.ini
entry: ./activated.py python manage-mypy.py build-mypy-ini
language: system
pass_filenames: false
- repo: local
hooks:
- id: mypy
name: mypy
entry: ./activated.py mypy
language: system
pass_filenames: false
- repo: local
hooks:
- id: isort
name: isort
entry: ./activated.py isort .
language: system
pass_filenames: false
- repo: https://github.com/pycqa/flake8
rev: 5.0.4
hooks:
- id: flake8