From 932a6c440db71c3ad731020ddbc4c7ce3d43285e Mon Sep 17 00:00:00 2001 From: esoteric-ephemera Date: Thu, 15 Jan 2026 16:51:39 -0800 Subject: [PATCH 1/2] omit cli from pydantic tests --- mpcontribs-lux/tests/test_models_for_arrow_compatibility.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/mpcontribs-lux/tests/test_models_for_arrow_compatibility.py b/mpcontribs-lux/tests/test_models_for_arrow_compatibility.py index 00f6709ab..266234376 100644 --- a/mpcontribs-lux/tests/test_models_for_arrow_compatibility.py +++ b/mpcontribs-lux/tests/test_models_for_arrow_compatibility.py @@ -17,6 +17,10 @@ def import_models(): if "__pycache__" in dirs: dirs.remove("__pycache__") + if "cli" in root: + # No pydantic models to validate in CLI + continue + parent_module = ".".join( [ "mpcontribs", From b448228c28d9e9312b6eaf8035996374a8dbfbb4 Mon Sep 17 00:00:00 2001 From: esoteric-ephemera Date: Thu, 15 Jan 2026 16:56:47 -0800 Subject: [PATCH 2/2] run tests on non client modifications --- .github/workflows/testing.yml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/.github/workflows/testing.yml b/.github/workflows/testing.yml index fe87820e6..7a2de4874 100644 --- a/.github/workflows/testing.yml +++ b/.github/workflows/testing.yml @@ -5,14 +5,10 @@ on: push: branches: - master - paths: - - mpcontribs-client/** pull_request: branches: - master - paths: - - mpcontribs-client/** jobs: test: