From 792f7d50aa17b9c8d81f1688e1278560d34b8be2 Mon Sep 17 00:00:00 2001 From: "Patrick J. Roddy" Date: Fri, 11 Oct 2024 10:25:48 +0100 Subject: [PATCH] Revert "Try `pytest-xdist` (#415)" This reverts commit 9d8884177135d17876a65b65dd85e99712a43622. --- .github/workflows/examples.yaml | 5 ++--- pyproject.toml | 1 - 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/examples.yaml b/.github/workflows/examples.yaml index df96a9e3..8fb312b1 100644 --- a/.github/workflows/examples.yaml +++ b/.github/workflows/examples.yaml @@ -35,11 +35,10 @@ jobs: key: readme-${{ hashFiles('pyproject.toml') }} - name: Install dependencies - run: python -m pip install -e ".[readme]" + run: python -m pip install -e '.[readme]' - name: Run examples in the README - run: >- - python -m pytest --codeblocks .github README.md documentation -n auto + run: python -m pytest --codeblocks .github README.md documentation examples: runs-on: ubuntu-latest diff --git a/pyproject.toml b/pyproject.toml index e53565cb..85a477ad 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -67,7 +67,6 @@ optional-dependencies = {dev = [ "pdoc3", ], readme = [ "pytest-codeblocks", - "pytest-xdist", ]} readme = "README.md" requires-python = ">=3.11"