From 246107c618833fcf62e44f2ea67aa08c222906cb Mon Sep 17 00:00:00 2001 From: Graham Neubig Date: Wed, 11 Dec 2024 01:05:29 -0800 Subject: [PATCH] Parallize Python Unit tests (#5499) --- .github/workflows/py-unit-tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/py-unit-tests.yml b/.github/workflows/py-unit-tests.yml index 6e624904a8..28a14095d7 100644 --- a/.github/workflows/py-unit-tests.yml +++ b/.github/workflows/py-unit-tests.yml @@ -42,7 +42,7 @@ jobs: - name: Build Environment run: make build - name: Run Tests - run: poetry run pytest --forked --cov=openhands --cov-report=xml -svv ./tests/unit --ignore=tests/unit/test_memory.py + run: poetry run pytest --forked -n auto --cov=openhands --cov-report=xml -svv ./tests/unit --ignore=tests/unit/test_memory.py - name: Upload coverage to Codecov uses: codecov/codecov-action@v4 env: