From e175a590930f5c58e3a8fc8ce533674f1b3aa4e6 Mon Sep 17 00:00:00 2001 From: Dag Sverre Seljebotn Date: Wed, 30 Jul 2008 16:02:23 +0200 Subject: [PATCH] Avoiding an emacs temporary in runtests.py --- runtests.py | 1 + 1 file changed, 1 insertion(+) diff --git a/runtests.py b/runtests.py index 2cc78929..f2f582f5 100644 --- a/runtests.py +++ b/runtests.py @@ -85,6 +85,7 @@ class TestBuilder(object): for filename in filenames: if not (filename.endswith(".pyx") or filename.endswith(".py")): continue + if filename.startswith('.'): continue # certain emacs backup files if context == 'pyregr' and not filename.startswith('test_'): continue module = os.path.splitext(filename)[0] -- 2.26.2