From e33a04d1f25299a2bd94bc416d3a0816f7e7fbb1 Mon Sep 17 00:00:00 2001 From: Ashwin Bharambe Date: Wed, 19 Mar 2025 14:32:07 -0700 Subject: [PATCH] update unit test command --- scripts/unit-tests.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/unit-tests.sh b/scripts/unit-tests.sh index dbc25e06b..5cfaa989b 100755 --- a/scripts/unit-tests.sh +++ b/scripts/unit-tests.sh @@ -16,4 +16,4 @@ if [ $FOUND_PYTHON -ne 0 ]; then uv python install $PYTHON_VERSION fi -uv run --python $PYTHON_VERSION --with-editable . --with-editable ".[dev]" --with-editable ".[unit]" pytest -s -v tests/unit/ $@ +uv run --python $PYTHON_VERSION --with-editable . --with-editable ".[dev]" --with-editable ".[unit]" pytest --asyncio-mode=auto -s -v tests/unit/ $@