From e89737787918375fbeda350879086a2096106ff4 Mon Sep 17 00:00:00 2001 From: Cheng Zhao Date: Mon, 3 Mar 2014 11:31:45 +0000 Subject: [PATCH] win: Disable pylint in cibuildbuild. --- script/cibuild | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/script/cibuild b/script/cibuild index dd2dfc5e99ca..5625caa09a1c 100755 --- a/script/cibuild +++ b/script/cibuild @@ -21,7 +21,8 @@ def main(): run_script('bootstrap.py') run_script('cpplint.py') - run_script('pylint.py') + if sys.platform != 'win32': + run_script('pylint.py') run_script('coffeelint.py') run_script('build.py') run_script('test.py', ['--ci'])