Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1873)

Unified Diff: chrome/common/extensions/docs/server2/integration_test.py

Issue 10834130: Extensions Docs Server: Doc conversion script - SVN (Closed) Base URL: https://src.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/common/extensions/docs/server2/integration_test.py
===================================================================
--- chrome/common/extensions/docs/server2/integration_test.py (revision 150606)
+++ 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). See http://crbug.com/141279.
+ '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()
« no previous file with comments | « chrome/common/extensions/docs/server2/docs_server_utils.py ('k') | chrome/common/extensions/docs/server2/intro_data_source.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698