We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
pytest-xdist
1 parent da56d82 commit 9d88841Copy full SHA for 9d88841
.github/workflows/examples.yaml
@@ -35,10 +35,11 @@ jobs:
35
key: readme-${{ hashFiles('pyproject.toml') }}
36
37
- name: Install dependencies
38
- run: python -m pip install -e '.[readme]'
+ run: python -m pip install -e ".[readme]"
39
40
- name: Run examples in the README
41
- run: python -m pytest --codeblocks .github README.md documentation
+ run: >-
42
+ python -m pytest --codeblocks .github README.md documentation -n auto
43
44
examples:
45
runs-on: ubuntu-latest
pyproject.toml
@@ -68,6 +68,7 @@ optional-dependencies = {dev = [
68
"pdoc3",
69
], readme = [
70
"pytest-codeblocks",
71
+ "pytest-xdist",
72
]}
73
readme = "README.md"
74
requires-python = ">=3.10"
0 commit comments