From f243fb9cba8ea940e84a7291b67bd8e141a03778 Mon Sep 17 00:00:00 2001 From: Timothy Nunn Date: Wed, 7 Jan 2026 09:08:11 +0000 Subject: [PATCH] Install example dependencies when installing test dependencies --- .github/workflows/process.yml | 2 +- pyproject.toml | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/process.yml b/.github/workflows/process.yml index f509069a83..b780dbf7c9 100644 --- a/.github/workflows/process.yml +++ b/.github/workflows/process.yml @@ -61,7 +61,7 @@ jobs: - name: Install PROCESS # Editable install to match default install run: | - pip install -e '.[test, examples]' + pip install -e '.[test]' - name: Install poppler run: | sudo apt update diff --git a/pyproject.toml b/pyproject.toml index a302c3ac1f..abd7a5dd7e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -55,7 +55,8 @@ test = [ "requests>=2.30", "testbook>=0.4", "pytest-cov>=3.0.0", - "pytest-xdist>=2.5.0" + "pytest-xdist>=2.5.0", + "process[examples]" ] examples = ["jupyter==1.0.0"] plotly = ["plotly>=5.15.0,<6"]