projects
/
cython.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f614eff
)
Avoiding an emacs temporary in runtests.py
author
Dag Sverre Seljebotn
<dagss@student.matnat.uio.no>
Wed, 30 Jul 2008 14:02:23 +0000
(16:02 +0200)
committer
Dag Sverre Seljebotn
<dagss@student.matnat.uio.no>
Wed, 30 Jul 2008 14:02:23 +0000
(16:02 +0200)
runtests.py
patch
|
blob
|
history
diff --git
a/runtests.py
b/runtests.py
index 2cc789297eba7c40f4b0daec6073d272b04d5f64..f2f582f50e28b2678296dd0200100690cd0082fd 100644
(file)
--- 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]