perf(python_unit_tests): use the runner's local disk for temp files on Windows - #323
Merged
Merged
Conversation
…n Windows The default Windows temp dir sits on a network-backed disk that is 4-6x slower at small-file writes than the local SSD behind RUNNER_TEMP. pytest's tmp_path and uv's scratch files honor TEMP, so point it there for the rest of the job. Measured on apify/actor-templates#907. No-op on Linux and macOS.
l2ysho
approved these changes
Sep 11, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
On Windows runners,
python_unit_testsnow setsTMPandTEMPtoRUNNER_TEMPfor the rest of the job. The default temp dir is on a network-backed disk that is 4-6x slower at small-file writes than the runner's local SSD. pytest'stmp_pathand uv's scratch files both honorTEMP, so they land on the fast disk. Measured in apify/actor-templates#907. Nothing changes on Linux or macOS.This workflow runs the Windows legs of crawlee-python, apify-sdk-python, apify-client-python and apify-shared-python. apify/actions#41 is the same change for the pnpm side.