Skip to content

Commit

Permalink
Fix pre-commit exlusions
Browse files Browse the repository at this point in the history
  • Loading branch information
kenodegard committed Oct 2, 2023
1 parent bb0ca2a commit a7dd266
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ exclude: |
test-recipes |
test-skeleton
)/ |
.*\.(patch|diff) |
.*\.(patch|diff)
)
repos:
# generic verification and formatting
Expand Down
11 changes: 5 additions & 6 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -99,8 +99,7 @@ line-length = 180
# E, W = pycodestyle errors and warnings
# F = pyflakes
# I = isort
# D = pydocstyle
select = ["E", "W", "F", "I", "D1"]
select = ["E", "W", "F", "I"]
# E402 module level import not at top of file
# E722 do not use bare 'except'
# E731 do not assign a lambda expression, use a def
Expand Down Expand Up @@ -128,8 +127,8 @@ addopts = [
"-vv",
]
markers = [
"serial: execute test serially (to avoid race conditions)",
"slow: execute the slow tests if active",
"sanity: execute the sanity tests",
"no_default_testing_config: used internally to disable monkeypatching for testing_config",
"serial: execute test serially (to avoid race conditions)",
"slow: execute the slow tests if active",
"sanity: execute the sanity tests",
"no_default_testing_config: used internally to disable monkeypatching for testing_config",
]

0 comments on commit a7dd266

Please sign in to comment.