|
Revision 146:058b02e61f74, 0.9 kB
(checked in by warner@lothar.com, 2 years ago)
|
[foolscap @ add figleaf-based code-coverage checking for unit tests]
|
| Line | |
|---|
| 1 |
# Boring file regexps: |
|---|
| 2 |
\.hi$ |
|---|
| 3 |
\.o$ |
|---|
| 4 |
\.o\.cmd$ |
|---|
| 5 |
# *.ko files aren't boring by default because they might |
|---|
| 6 |
# be Korean translations rather than kernel modules. |
|---|
| 7 |
# \.ko$ |
|---|
| 8 |
\.ko\.cmd$ |
|---|
| 9 |
\.mod\.c$ |
|---|
| 10 |
(^|/)\.tmp_versions($|/) |
|---|
| 11 |
(^|/)CVS($|/) |
|---|
| 12 |
(^|/)RCS($|/) |
|---|
| 13 |
~$ |
|---|
| 14 |
#(^|/)\.[^/] |
|---|
| 15 |
(^|/)_darcs($|/) |
|---|
| 16 |
\.bak$ |
|---|
| 17 |
\.BAK$ |
|---|
| 18 |
\.orig$ |
|---|
| 19 |
(^|/)vssver\.scc$ |
|---|
| 20 |
\.swp$ |
|---|
| 21 |
(^|/)MT($|/) |
|---|
| 22 |
(^|/)\{arch\}($|/) |
|---|
| 23 |
(^|/).arch-ids($|/) |
|---|
| 24 |
(^|/), |
|---|
| 25 |
\.class$ |
|---|
| 26 |
\.prof$ |
|---|
| 27 |
(^|/)\.DS_Store$ |
|---|
| 28 |
(^|/)BitKeeper($|/) |
|---|
| 29 |
(^|/)ChangeSet($|/) |
|---|
| 30 |
(^|/)\.svn($|/) |
|---|
| 31 |
\.py[co]$ |
|---|
| 32 |
\# |
|---|
| 33 |
\.cvsignore$ |
|---|
| 34 |
(^|/)Thumbs\.db$ |
|---|
| 35 |
(^|/)autom4te\.cache($|/) |
|---|
| 36 |
|
|---|
| 37 |
^_trial_temp($|/) |
|---|
| 38 |
^doc/.*\.html$ |
|---|
| 39 |
|
|---|
| 40 |
# debian/distutils things |
|---|
| 41 |
^build($|/) |
|---|
| 42 |
^dist($|/) |
|---|
| 43 |
^MANIFEST$ |
|---|
| 44 |
^python-build-stamp-.*$ |
|---|
| 45 |
^misc/(sid|sarge|dapper|edgy|feisty)/debian/python-foolscap($|/) |
|---|
| 46 |
^misc/(sid|sarge|dapper|edgy|feisty)/debian/python-foolscap\..*$ |
|---|
| 47 |
^misc/(sid|sarge|dapper|edgy|feisty)/debian/files$ |
|---|
| 48 |
^\.figleaf$ |
|---|
| 49 |
^coverage-html($|/) |
|---|
| 50 |
^misc/testutils/twisted/plugins/dropin.cache$ |
|---|