From f6ee95a61a6b297b2dd82b524a6a7983b81026c1 Mon Sep 17 00:00:00 2001 From: Mandana Vaziri Date: Mon, 9 Jun 2025 16:55:14 -0400 Subject: [PATCH] revert change to ignore optimizer test Signed-off-by: Mandana Vaziri --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 6beabd5f0..16f72fe40 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -44,9 +44,9 @@ jobs: - name: pre-commit checks run: pre-commit run -a - name: run tests - run: py.test -v --capture=tee-sys --ignore=tests/test_examples_run.py --ignore=tests/test_optimizer.py --ignore=tests/test_schema.py tests + run: py.test -v --capture=tee-sys --ignore=tests/test_examples_run.py --ignore=tests/test_schema.py tests if: matrix.python-version == '3.11' - name: run tests - run: py.test -v --capture=tee-sys --ignore=tests/test_examples_run.py --ignore=tests/test_optimizer.py tests + run: py.test -v --capture=tee-sys --ignore=tests/test_examples_run.py tests if: matrix.python-version != '3.11'