Chromium Code Reviews| Index: chrome/common/extensions/docs/server2/integration_test.py |
| =================================================================== |
| --- chrome/common/extensions/docs/server2/integration_test.py (revision 150187) |
| +++ chrome/common/extensions/docs/server2/integration_test.py (working copy) |
| @@ -13,6 +13,8 @@ |
| KNOWN_FAILURES = [ |
| 'webstore.html', |
| + 'app.html', |
| + 'experimental_serial.html' |
|
not at google - send to devlin
2012/08/07 02:42:14
commented this in a different patch, but adding a
|
| ] |
| class _MockResponse(object): |
| @@ -34,7 +36,7 @@ |
| for path, dirs, files in os.walk(base_path): |
| for name in files: |
| filename = os.path.join(path, name) |
| - if filename in KNOWN_FAILURES or filename.startswith('.'): |
| + if name in KNOWN_FAILURES or '.' in path or name.startswith('.'): |
| continue |
| request = _MockRequest(filename.split('/', 2)[-1]) |
| response = _MockResponse() |