Parallelizing github actions #2308
-
Apologies if this is a duplicate, but I wanted to know if we had decided on a tool for parallelizing the docs build part of the github actions. My understanding is that it's actually running all the notebooks that takes a long time (as pointed out by @natestemen in #2247, these example notebooks are essentially our integration testing at present). Locally I have started using this tool https://pypi.org/project/pytest-xdist/ when I run pytest, which has an automatic mode to parallelize across as many CPUs as are available. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
DocsWe have #2235 opened from @cosenal which is currently blocked by the sphinx theme that we use. Alessandro has done some testing for the pydata-sphinx-theme and found our docs look okay even when built in parallel. See the comment here. TestsWhen running Line 63 in e76ef08 In particular the
You can see |
Beta Was this translation helpful? Give feedback.
I see. So is
make test
already being run in parallel on the Github runner.