diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 34f2c97018..20688e9f6c 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -12,7 +12,7 @@ exclude: | test-recipes | test-skeleton )/ | - .*\.(patch|diff) | + .*\.(patch|diff) ) repos: # generic verification and formatting diff --git a/pyproject.toml b/pyproject.toml index 93522bca6a..1382be8ab9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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 @@ -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", ]