From: Dag Sverre Seljebotn Date: Wed, 30 Jul 2008 14:02:23 +0000 (+0200) Subject: Avoiding an emacs temporary in runtests.py X-Git-Tag: 0.9.8.1~49^2~44 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=e175a590930f5c58e3a8fc8ce533674f1b3aa4e6;p=cython.git Avoiding an emacs temporary in runtests.py --- 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]