Branch: refs/heads/master
Home: https://github.com/django/django
Commit: 208e26b39c95ab7569780a7962b25dd4749d9a18
https://github.com/django/django/commit/208e26b39c95ab7569780a7962b25dd4749d9a18
Author: Claude Paroz <[email protected]>
Date: 2012-05-05 (Sat, 05 May 2012)
Changed paths:
M tests/runtests.py
Log Message:
-----------
Commented on a line that inadvertantly slipped in commit 865cd35c
Ignoring __pycache__ directories fixes #17393 and prepare testing
with Python 3.
diff --git a/tests/runtests.py b/tests/runtests.py
index 5074412..b71cf98 100755
--- a/tests/runtests.py
+++ b/tests/runtests.py
@@ -61,6 +61,7 @@ def get_test_modules():
for f in os.listdir(dirpath):
if (f.startswith('__init__') or
f.startswith('.') or
+ # Python 3 byte code dirs (PEP 3147)
f == '__pycache__' or
f.startswith('sql') or
os.path.basename(f) in REGRESSION_SUBDIRS_TO_SKIP):
================================================================
--
You received this message because you are subscribed to the Google Groups
"Django updates" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/django-updates?hl=en.