From 9319c71e4a6103a1b4a519edfef49e68811b0a34 Mon Sep 17 00:00:00 2001 From: William Barnhart Date: Thu, 14 Mar 2024 12:39:09 -0400 Subject: [PATCH] Install self in tests.yml and test PyPy 3.9 as well --- .github/workflows/tests.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 1ea2139..6db8cd1 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -19,6 +19,7 @@ jobs: fail-fast: false matrix: python-version: + - "pypy3.9" - "pypy3.10" - "3.8" - "3.9" @@ -46,6 +47,9 @@ jobs: - name: Install dependencies run: pip install -r requirements.txt + - name: Install for testing + run: pip install -e . + - name: Run linting checks run: scripts/lint.sh