From f458a60391f7175c9f1df7fd45c7706d02f8b233 Mon Sep 17 00:00:00 2001 From: Daan De Meyer Date: Sat, 23 Nov 2024 12:54:02 +0100 Subject: test: Lint integration-test-wrapper.py --- .github/workflows/linter.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to '.github') diff --git a/.github/workflows/linter.yml b/.github/workflows/linter.yml index bf93682bd8..d9f6a37680 100644 --- a/.github/workflows/linter.yml +++ b/.github/workflows/linter.yml @@ -37,7 +37,7 @@ jobs: VALIDATE_GITHUB_ACTIONS: true - name: Check that tabs are not used in Python code - run: sh -c '! git grep -P "\\t" -- src/ukify/ukify.py' + run: sh -c '! git grep -P "\\t" -- src/ukify/ukify.py test/integration-test-wrapper.py' - name: Install ruff and mypy run: | @@ -47,14 +47,14 @@ jobs: - name: Run mypy run: | python3 -m mypy --version - python3 -m mypy src/ukify/ukify.py + python3 -m mypy src/ukify/ukify.py test/integration-test-wrapper.py - name: Run ruff check run: | ruff --version - ruff check src/ukify/ukify.py + ruff check src/ukify/ukify.py test/integration-test-wrapper.py - name: Run ruff format run: | ruff --version - ruff format --check src/ukify/ukify.py + ruff format --check src/ukify/ukify.py test/integration-test-wrapper.py -- cgit v1.2.3