From cee7a009dec40252f4f1838b73b5bc3e6824fad6 Mon Sep 17 00:00:00 2001 From: Celia Parts Date: Wed, 30 Jul 2025 14:17:22 -0400 Subject: [PATCH 1/2] updating workflows to try triggering CI/CD --- .github/workflows/build-docs-tests.yml | 1 + .github/workflows/codestyle-check.yml | 1 + .github/workflows/python-tests.yml | 1 + 3 files changed, 3 insertions(+) diff --git a/.github/workflows/build-docs-tests.yml b/.github/workflows/build-docs-tests.yml index eaecc542..aa8667bb 100644 --- a/.github/workflows/build-docs-tests.yml +++ b/.github/workflows/build-docs-tests.yml @@ -7,6 +7,7 @@ on: branches: - master - dev + - dev_cobalt # Allows to run this workflow manually from the Actions tab workflow_dispatch: jobs: diff --git a/.github/workflows/codestyle-check.yml b/.github/workflows/codestyle-check.yml index d05533d2..23ae065e 100644 --- a/.github/workflows/codestyle-check.yml +++ b/.github/workflows/codestyle-check.yml @@ -7,6 +7,7 @@ on: branches: - master - dev + - dev_cobalt # Allows to run this workflow manually from the Actions tab workflow_dispatch: jobs: diff --git a/.github/workflows/python-tests.yml b/.github/workflows/python-tests.yml index b220008c..ce7f481e 100644 --- a/.github/workflows/python-tests.yml +++ b/.github/workflows/python-tests.yml @@ -7,6 +7,7 @@ on: branches: - master - dev + - dev_cobalt # Allows to run this workflow manually from the Actions tab workflow_dispatch: jobs: From 77bc499342a59b8852c3e1b788bd32852c0217e4 Mon Sep 17 00:00:00 2001 From: Celia Parts Date: Wed, 30 Jul 2025 14:22:35 -0400 Subject: [PATCH 2/2] updating to ignore imports beyond headers, ruff versioning change introduced new errors --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index 21ae3986..fe8b2458 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -52,6 +52,7 @@ build_cmd = "build" fix = true show-fixes = true extend-include = ["*.ipynb"] +extend-ignore = ["PLC0415"] [tool.ruff.lint] extend-select = ["E", "W", "YTT", "ASYNC", "BLE", "B", "A",