From 5de31cb8cb83c33d932d5ddf76ff81506c28bdff Mon Sep 17 00:00:00 2001 From: Karen Tracey Date: Sun, 13 Nov 2011 19:05:02 +0000 Subject: Refs #17215: Avoid generating 47 leftover tmp dirs during a clean test run. git-svn-id: http://code.djangoproject.com/svn/django/trunk@17094 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- tests/regressiontests/forms/models.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'tests/regressiontests/forms') diff --git a/tests/regressiontests/forms/models.py b/tests/regressiontests/forms/models.py index d4e693436b..939055785a 100644 --- a/tests/regressiontests/forms/models.py +++ b/tests/regressiontests/forms/models.py @@ -1,4 +1,5 @@ # -*- coding: utf-8 -*- +import os import datetime import tempfile @@ -6,7 +7,7 @@ from django.core.files.storage import FileSystemStorage from django.db import models -temp_storage_location = tempfile.mkdtemp() +temp_storage_location = tempfile.mkdtemp(dir=os.environ['DJANGO_TEST_TEMP_DIR']) temp_storage = FileSystemStorage(location=temp_storage_location) -- cgit v1.3