From 340e5bc9da4afb8b0211bbb9b396bae6bdd4730f Mon Sep 17 00:00:00 2001 From: abaczek Date: Thu, 28 May 2026 15:45:10 +0000 Subject: [PATCH 1/2] chore: bump pytest and mfd-code-quality requirements Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> Signed-off-by: abaczek --- requirements-dev.txt | 2 +- requirements-test.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/requirements-dev.txt b/requirements-dev.txt index 925be63..6228eff 100644 --- a/requirements-dev.txt +++ b/requirements-dev.txt @@ -1,2 +1,2 @@ -r requirements-test.txt -mfd-code-quality >= 1.2.0, < 2 \ No newline at end of file +mfd-code-quality >= 1.4.1, < 2 \ No newline at end of file diff --git a/requirements-test.txt b/requirements-test.txt index 60bd9c2..3526882 100644 --- a/requirements-test.txt +++ b/requirements-test.txt @@ -1,6 +1,6 @@ -r requirements.txt -pytest ~= 8.4 +pytest >= 9.0.3, < 10 pytest-mock ~= 3.14 mfd-connect >= 7.12 From b28f8a07a38982a939f825b9f676981373b520fe Mon Sep 17 00:00:00 2001 From: abaczek Date: Thu, 28 May 2026 15:45:10 +0000 Subject: [PATCH 2/2] ci: align GitHub Actions with shared workflows Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> Signed-off-by: abaczek --- .github/workflows/check_code_standard.yml | 3 ++- .github/workflows/{pull_requests.yml => pull_request.yml} | 0 2 files changed, 2 insertions(+), 1 deletion(-) rename .github/workflows/{pull_requests.yml => pull_request.yml} (100%) diff --git a/.github/workflows/check_code_standard.yml b/.github/workflows/check_code_standard.yml index 98f3173..1b4d776 100644 --- a/.github/workflows/check_code_standard.yml +++ b/.github/workflows/check_code_standard.yml @@ -10,7 +10,8 @@ jobs: fail-fast: false matrix: python_version: ['3.10', '3.13'] - uses: intel/mfd/.github/workflows/check_code_standard.yml@main + uses: intel/mfd/.github/workflows/check_code_standard.yml@main with: REPOSITORY_NAME: ${{ github.event.pull_request.head.repo.full_name }} BRANCH_NAME: ${{ github.head_ref }} + PYTHON_VERSION: ${{ matrix.python_version }} \ No newline at end of file diff --git a/.github/workflows/pull_requests.yml b/.github/workflows/pull_request.yml similarity index 100% rename from .github/workflows/pull_requests.yml rename to .github/workflows/pull_request.yml