From 3810cf6df38ae9d5920b01c1eec813046eca50d6 Mon Sep 17 00:00:00 2001 From: vivian Date: Mon, 24 Feb 2025 12:52:28 +0530 Subject: [PATCH 1/3] Added temporary fix for work-6109 --- python-lint/action.yml | 8 ++++---- python-test/action.yml | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/python-lint/action.yml b/python-lint/action.yml index 2918e78..8cd32fc 100644 --- a/python-lint/action.yml +++ b/python-lint/action.yml @@ -43,20 +43,20 @@ runs: - name: Run Black run: poetry run black --check . - continue-on-error: true #Added so to provide lineance while lint + continue-on-error: false #Added so to provide lineance while lint shell: bash - name: Run Flake8 run: poetry run flake8 . - continue-on-error: true #Added so to provide lineance while lint + continue-on-error: false #Added so to provide lineance while lint shell: bash - name: Run isort run: poetry run isort --check . - continue-on-error: true #Added so to provide lineance while lint + continue-on-error: false #Added so to provide lineance while lint shell: bash - name: Run mypy run: poetry run mypy . - continue-on-error: true #Added so to provide lineance while lint + continue-on-error: false #Added so to provide lineance while lint shell: bash diff --git a/python-test/action.yml b/python-test/action.yml index 229e3d5..052a817 100644 --- a/python-test/action.yml +++ b/python-test/action.yml @@ -46,5 +46,5 @@ runs: - name: Run Test run: poetry run pytest - continue-on-error: true + continue-on-error: false shell: bash From 0e76f8010233dbdf9f493d17d043f7466595d6ff Mon Sep 17 00:00:00 2001 From: vivian Date: Tue, 25 Feb 2025 18:59:48 +0530 Subject: [PATCH 2/3] temporary fix for release --- python-lint/action.yml | 8 ++++---- python-test/action.yml | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/python-lint/action.yml b/python-lint/action.yml index 8cd32fc..2918e78 100644 --- a/python-lint/action.yml +++ b/python-lint/action.yml @@ -43,20 +43,20 @@ runs: - name: Run Black run: poetry run black --check . - continue-on-error: false #Added so to provide lineance while lint + continue-on-error: true #Added so to provide lineance while lint shell: bash - name: Run Flake8 run: poetry run flake8 . - continue-on-error: false #Added so to provide lineance while lint + continue-on-error: true #Added so to provide lineance while lint shell: bash - name: Run isort run: poetry run isort --check . - continue-on-error: false #Added so to provide lineance while lint + continue-on-error: true #Added so to provide lineance while lint shell: bash - name: Run mypy run: poetry run mypy . - continue-on-error: false #Added so to provide lineance while lint + continue-on-error: true #Added so to provide lineance while lint shell: bash diff --git a/python-test/action.yml b/python-test/action.yml index 052a817..229e3d5 100644 --- a/python-test/action.yml +++ b/python-test/action.yml @@ -46,5 +46,5 @@ runs: - name: Run Test run: poetry run pytest - continue-on-error: false + continue-on-error: true shell: bash From 00938aaf2fb62cf285b1d4809a37919ee65ccd67 Mon Sep 17 00:00:00 2001 From: vivian Date: Wed, 2 Apr 2025 12:35:55 +0530 Subject: [PATCH 3/3] set the continue-on-error to true --- python-lint/action.yml | 8 ++++---- python-test/action.yml | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/python-lint/action.yml b/python-lint/action.yml index 2918e78..8cd32fc 100644 --- a/python-lint/action.yml +++ b/python-lint/action.yml @@ -43,20 +43,20 @@ runs: - name: Run Black run: poetry run black --check . - continue-on-error: true #Added so to provide lineance while lint + continue-on-error: false #Added so to provide lineance while lint shell: bash - name: Run Flake8 run: poetry run flake8 . - continue-on-error: true #Added so to provide lineance while lint + continue-on-error: false #Added so to provide lineance while lint shell: bash - name: Run isort run: poetry run isort --check . - continue-on-error: true #Added so to provide lineance while lint + continue-on-error: false #Added so to provide lineance while lint shell: bash - name: Run mypy run: poetry run mypy . - continue-on-error: true #Added so to provide lineance while lint + continue-on-error: false #Added so to provide lineance while lint shell: bash diff --git a/python-test/action.yml b/python-test/action.yml index 229e3d5..052a817 100644 --- a/python-test/action.yml +++ b/python-test/action.yml @@ -46,5 +46,5 @@ runs: - name: Run Test run: poetry run pytest - continue-on-error: true + continue-on-error: false shell: bash