From 5125a252a0cdae77fbe3c30e3354ef86ba581e05 Mon Sep 17 00:00:00 2001 From: Mark Liffiton Date: Wed, 19 Jun 2024 09:56:25 -0500 Subject: [PATCH] Update python-checks.yml: typing uses 3.10+ syntax; auto # threads for test --- .github/workflows/python-checks.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/python-checks.yml b/.github/workflows/python-checks.yml index 47048e0..2d0a959 100644 --- a/.github/workflows/python-checks.yml +++ b/.github/workflows/python-checks.yml @@ -29,8 +29,9 @@ jobs: python -m pip install --upgrade pip wheel pip install -e .[test] - name: Type check with mypy + if: ${{ matrix.python-version >= 3.10 }} run: | mypy - name: Test with pytest run: | - pytest + pytest -n auto