From 7dbc9ebf7b90002ebd3e1ae3fa391408087858c3 Mon Sep 17 00:00:00 2001 From: "Travis A. O'Brien" Date: Tue, 10 Sep 2024 11:12:46 -0400 Subject: [PATCH] Make sure pytest is installed --- .github/workflows/test.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 0356501..1eabb9f 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -31,6 +31,9 @@ jobs: run: | python -m pip install numpy==1.23.5 # now run test suite + pip install -r requirements.txt + pip install pytest ruff + pip install -e . pytest - name: Install dependencies