10000 Add --tempdir option for test run by zooba · Pull Request #10322 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

Add --tempdir option for test run #10322

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Nov 17, 2018
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Remove envvar override
  • Loading branch information
zooba committed Nov 4, 2018
commit 994787a00a1d991a0a4968fb322069d2fea9c86b
2 changes: 1 addition & 1 deletion Lib/test/libregrtest/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
TEMPDIR = sysconfig.get_config_var('srcdir')
TEMPDIR = os.path.join(TEMPDIR, 'build')
else:
TEMPDIR = os.getenv('PY_TEMPDIR', None) or tempfile.gettempdir()
TEMPDIR = tempfile.gettempdir()
TEMPDIR = os.path.abspath(TEMPDIR)


Expand Down
0