From 45e6d370ce3becc17ce8d06a8257bef691a3cc10 Mon Sep 17 00:00:00 2001 From: Simon Willison Date: Sat, 8 Jul 2023 11:35:15 -0700 Subject: [PATCH] Install docs dependencies for tests, refs #1153 --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 39aa8b13..d44a5751 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -29,7 +29,7 @@ jobs: (cd tests && gcc ext.c -fPIC -shared -o ext.so) - name: Install dependencies run: | - pip install -e '.[test]' + pip install -e '.[test,docs]' pip freeze - name: Run tests run: |