From 8c1eb383f2d98fc8b43009217f486e5dd7e63840 Mon Sep 17 00:00:00 2001 From: Henry Wilde Date: Sat, 21 Oct 2023 12:26:34 +0100 Subject: [PATCH] Add `docs` dependencies to tests CI When we test the documentation, we need its dependencies. --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 43beb7e..c443262 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -29,7 +29,7 @@ jobs: - name: Update pip and install dependencies run: | python -m pip install --upgrade pip - python -m pip install ".[test]" + python -m pip install ".[docs,test]" - name: Run tests run: |