Chromium Code Reviews| Index: chrome/common/extensions/docs/server2/integration_test.py |
| =================================================================== |
| --- chrome/common/extensions/docs/server2/integration_test.py (revision 150390) |
| +++ chrome/common/extensions/docs/server2/integration_test.py (working copy) |
| @@ -12,7 +12,8 @@ |
| from handler import Handler |
| KNOWN_FAILURES = [ |
| - 'webstore.html', |
| + # Exception in schema compiler (model.py). |
|
not at google - send to devlin
2012/08/08 00:33:14
file a bug, blocking the release of the server, an
|
| + 'app.html', |
| ] |
| class _MockResponse(object): |
| @@ -34,7 +35,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() |