From 79c19ecf2e47a0c7d17fc1afbbbdfa4bdf101e2a Mon Sep 17 00:00:00 2001 From: Noah Shutty Date: Tue, 24 Jun 2025 15:26:25 -0700 Subject: [PATCH 1/2] Update simplex_test.py to get rid of window length arg --- src/py/simplex_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/py/simplex_test.py b/src/py/simplex_test.py index 965fe9ea..0ddb9643 100644 --- a/src/py/simplex_test.py +++ b/src/py/simplex_test.py @@ -28,7 +28,7 @@ def test_create_simplex_config(): - sc = tesseract_decoder.simplex.SimplexConfig(_DETECTOR_ERROR_MODEL, window_length=5) + sc = tesseract_decoder.simplex.SimplexConfig(_DETECTOR_ERROR_MODEL) assert sc.dem == _DETECTOR_ERROR_MODEL assert sc.window_length == 5 assert ( From ec0313981e754c715d3299a56b6f0c361f1ab6ab Mon Sep 17 00:00:00 2001 From: Noah Shutty Date: Sat, 7 Mar 2026 12:09:16 -0800 Subject: [PATCH 2/2] Update ci.yml to include all tests (#38) --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 76de50c7..ffaafa01 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -72,4 +72,4 @@ jobs: [ -z "$files" ] || clang-format --dry-run --Werror $files - name: Bazel tests - run: bazel test src:all + run: bazel test src/...