From 8bb8c0f7a26891cf400483d0a364ea49da672643 Mon Sep 17 00:00:00 2001 From: Vijayakumar A <36878324+kumvijaya@users.noreply.github.com> Date: Tue, 27 Aug 2024 00:08:17 +0530 Subject: [PATCH 1/2] T0000: test --- src/tests/helper.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/tests/helper.py b/src/tests/helper.py index ea1ec74..a4d30c7 100644 --- a/src/tests/helper.py +++ b/src/tests/helper.py @@ -29,3 +29,4 @@ def prepare_module(file_path='', module_name=''): print() if False: print('False') if True: print('True Again') + if True: print('True Once Again') From 0c5dc09041d5d8784e397fa010496b69b4261e52 Mon Sep 17 00:00:00 2001 From: Vijayakumar A <36878324+kumvijaya@users.noreply.github.com> Date: Tue, 27 Aug 2024 00:15:57 +0530 Subject: [PATCH 2/2] T0000: test --- .github/workflows/darker-lint.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/darker-lint.yml b/.github/workflows/darker-lint.yml index c4ca348..7d833d9 100644 --- a/.github/workflows/darker-lint.yml +++ b/.github/workflows/darker-lint.yml @@ -12,6 +12,7 @@ permissions: env: base_ref: ${{ github.event.pull_request.base.ref }} + head_ref: ${{ github.event.pull_request.head.ref }} jobs: darker-lint: @@ -37,4 +38,4 @@ jobs: - name: Analyze Code run: | - darker -r ${base_ref}... --check --diff --lint "ruff check" --isort --color ./src \ No newline at end of file + darker -r ${base_ref}...${head_ref} --check --diff --lint "ruff check" --isort --color ./src \ No newline at end of file