From edd86d2753815fbb0f1f6f0868f54dc927f99341 Mon Sep 17 00:00:00 2001 From: devsjc <47188100+devsjc@users.noreply.github.com> Date: Wed, 23 Oct 2024 14:52:11 +0100 Subject: [PATCH] fix(Branch CI): --extras -> --extra --- .github/workflows/branch_ci.yml | 2 +- .../repositories/model_repositories/test_metoffice_global.py | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/branch_ci.yml b/.github/workflows/branch_ci.yml index 1aed2ee3..824dcc4c 100644 --- a/.github/workflows/branch_ci.yml +++ b/.github/workflows/branch_ci.yml @@ -108,7 +108,7 @@ jobs: python-version-file: "pyproject.toml" - name: Install editable package and required dependencies - run: uv sync --extras=docs + run: uv sync --extra=docs - name: Build documentation run: uv run pydoctor diff --git a/src/nwp_consumer/internal/repositories/model_repositories/test_metoffice_global.py b/src/nwp_consumer/internal/repositories/model_repositories/test_metoffice_global.py index 2104b5ac..41280637 100644 --- a/src/nwp_consumer/internal/repositories/model_repositories/test_metoffice_global.py +++ b/src/nwp_consumer/internal/repositories/model_repositories/test_metoffice_global.py @@ -71,5 +71,6 @@ def url(self) -> str: msg=f"Error: {subset_result}", ) + if __name__ == "__main__": unittest.main()