Skip to content

Commit 25c6b64

Browse files
committed
test: Add pre-commit configuration
1 parent b79e367 commit 25c6b64

File tree

4 files changed

+48
-22
lines changed

4 files changed

+48
-22
lines changed

.github/workflows/basic-python3.yml

+13
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,19 @@ name: Python 3 tests
33
on: [push, pull_request]
44

55
jobs:
6+
pre-commit:
7+
runs-on: ubuntu-latest
8+
if: github.event_name != 'push' || github.repository == 'DIRACGrid/DIRAC'
9+
steps:
10+
- uses: actions/checkout@v2
11+
- uses: actions/setup-python@v2
12+
with:
13+
python-version: '3.9'
14+
- name: Install pre-commit
15+
run: pip install pre-commit
16+
- name: Run pre-commit
17+
run: pre-commit run --all-files --show-diff-on-failure
18+
619
check:
720
runs-on: ubuntu-latest
821
if: github.event_name != 'push' || github.repository == 'DIRACGrid/DIRAC'

.pre-commit-config.yaml

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# See https://pre-commit.com for more information
2+
# See https://pre-commit.com/hooks.html for more hooks
3+
4+
default_language_version:
5+
python: python3.9
6+
7+
exclude: |
8+
(?x)^(
9+
src/DIRAC/Interfaces/API/test/test.*\.jdl
10+
)$
11+
12+
repos:
13+
- repo: https://github.com/pre-commit/pre-commit-hooks
14+
rev: v4.0.1
15+
hooks:
16+
- id: trailing-whitespace
17+
- id: end-of-file-fixer
18+
- id: check-yaml
19+
- id: check-added-large-files
20+
21+
- repo: https://github.com/psf/black
22+
rev: 21.9b0
23+
hooks:
24+
- id: black
25+
additional_dependencies: [".[python2]"]

pyproject.toml

+4
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,7 @@ build-backend = "setuptools.build_meta"
77
[tool.setuptools_scm]
88
# Avoid letting setuptools_scm use old style tags (i.e. vXrYpZ)
99
git_describe_command = "git describe --dirty --tags --long --match *[0-9].[0-9]* --exclude v[0-9]r* --exclude v[0-9][0-9]r*"
10+
11+
[tool.black]
12+
line-length = 120
13+
target-version = ['py27']

setup.cfg

+6-22
Original file line numberDiff line numberDiff line change
@@ -287,29 +287,13 @@ console_scripts =
287287
# Linting
288288
###############################################################################
289289

290-
# pep8 binary will still look into this section
291-
[pep8]
292-
# Pep8 codes:
293-
# E111 - indentation is not a multiple of four
294-
# E114 indentation is not a multiple of four (comment)
295-
ignore=E111,E114
296-
297-
# Make it format also comments, and method signatures
298-
aggressive=2
299-
300-
# Understood by pep8 and autopep8
301-
max_line_length=120
302-
# indent_size is unknown to pep8, but not to autopep8
303-
indent_size=2
304-
305290
[pycodestyle]
306291
# Pep8 codes:
307-
# E111 - indentation is not a multiple of four
308-
# E114 - indentation is not a multiple of four (comment)
292+
# E203 - Whitespace before ':' (spaces should be present for list slices)
293+
# E211 - Whitespace before '(' (black incorrectly formats exec when in Python 2 mode)
294+
# E266 - Too many leading '#' for block comment
309295
# E402 - module level import not at top of file (for scripts)
310296
# W503 - line break before binary operator (stupid, complains after or before...)
311-
# W504 - line break after binary operator (stupid, complains after or before...)
312-
ignore=E111,E114,E402,W503,W504
313-
max_line_length=120
314-
exclude=
315-
integration_tests.py
297+
ignore = E203, E211, E266, E402, W503
298+
# TODO: This should be reduced back to 120 at some point
299+
max_line_length=130

0 commit comments

Comments
 (0)