blob: 4509bacd1bbb8af49efce587e021ad2054ace1a7 [file] [log] [blame]
[email protected]54caefd2012-02-15 06:18:561#!/usr/bin/env python
dbeama7b291292015-07-20 21:53:482# Copyright 2015 The Chromium Authors. All rights reserved.
[email protected]54caefd2012-02-15 06:18:563# Use of this source code is governed by a BSD-style license that can be
4# found in the LICENSE file.
5
dbeama7b291292015-07-20 21:53:486"""Unit test runner for Web Development Style Guide checks."""
[email protected]54caefd2012-02-15 06:18:567
dbeama7b291292015-07-20 21:53:488from web_dev_style import closure_lint_test, \
9 css_checker_test, \
10 html_checker_test, \
11 js_checker_test, \
12 resource_checker_test
[email protected]54caefd2012-02-15 06:18:5613
dbeama7b291292015-07-20 21:53:4814_TEST_MODULES = [
15 closure_lint_test,
16 css_checker_test,
17 html_checker_test,
18 js_checker_test,
19 resource_checker_test
20]
[email protected]54caefd2012-02-15 06:18:5621
dbeama7b291292015-07-20 21:53:4822for test_module in _TEST_MODULES:
23 test_module.unittest.main(test_module)