diff --git a/.github/workflows/py-test.yml b/.github/workflows/py-test.yml index ce8363b..77d6e6d 100644 --- a/.github/workflows/py-test.yml +++ b/.github/workflows/py-test.yml @@ -60,7 +60,7 @@ jobs: pylint ${{ env.package }} tests tests: - name: Test package on Python ${{ matrix.python-version }} + name: "Test package" needs: lint runs-on: ubuntu-latest steps: diff --git a/.ruff.toml b/.ruff.toml index 384e20e..eb68b8c 100644 --- a/.ruff.toml +++ b/.ruff.toml @@ -2,7 +2,7 @@ target-version = "py312" -select = [ +lint.select = [ "B007", # Loop control variable {name} not used within loop body "B014", # Exception handler with duplicate exception "C", # complexity @@ -26,7 +26,7 @@ select = [ "W", # pycodestyle ] -ignore = [ +lint.ignore = [ "D202", # No blank lines allowed after function docstring "D203", # 1 blank line required before class docstring "D213", # Multi-line docstring summary should start at the second line