From 208e26b39c95ab7569780a7962b25dd4749d9a18 Mon Sep 17 00:00:00 2001 From: Claude Paroz Date: Sat, 5 May 2012 16:45:02 +0200 Subject: [PATCH] Commented on a line that inadvertantly slipped in commit 865cd35c Ignoring __pycache__ directories fixes #17393 and prepare testing with Python 3. --- tests/runtests.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/runtests.py b/tests/runtests.py index 50744122e9..b71cf98b13 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):