From f1a7cc00f96bf0406f9ad828ee76cc5d8e2b2260 Mon Sep 17 00:00:00 2001 From: Simon Cross Date: Sun, 25 Aug 2024 00:21:57 +0200 Subject: [PATCH] Install genshi before trying to run pytest. --- .github/workflows/tests.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 18c969e..b9ea317 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -17,7 +17,11 @@ jobs: with: python-version: ${{ matrix.python-version }} - - name: Install setuptools + - name: Install genshi + run: | + pip install -e . + + - name: Install testing requirements run: | pip install setuptools pytest