From a07f74156b2234eb2fd107bcf179019df1908778 Mon Sep 17 00:00:00 2001 From: Kirill Klenov Date: Mon, 7 Aug 2023 20:54:53 +0700 Subject: [PATCH] build: wip --- .github/workflows/tests.yml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 79444bd..b71757c 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -30,13 +30,21 @@ jobs: - name: Setup requirements run: poetry install --with dev + if: matrix.python-version != 'pypy-3.10' + + - name: Setup requirements pypy + run: | + poetry install + poetry install aiofile pytest pytest-aio + if: matrix.python-version == 'pypy-3.10' - name: Check code run: poetry run ruff muffin + if: matrix.python-version != 'pypy-3.10' - name: Check typing run: poetry run mypy - if: matrix.python-version != 'pypy-3.9' + if: matrix.python-version != 'pypy-3.10' - name: Test with pytest run: poetry run pytest tests