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

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 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()

Powered by Google App Engine
This is Rietveld 408576698