diff options
author | askeing <askeing@gmail.com> | 2016-04-14 15:55:25 +0800 |
---|---|---|
committer | askeing <askeing@gmail.com> | 2016-04-14 15:55:25 +0800 |
commit | bfe460de9e482bdd40b6ec6f702d612d1bb5b43b (patch) | |
tree | 4c76c32f4daf067bd7046f6fe337fe3934d14de6 /python/servo/testing_commands.py | |
parent | 41b86870fa02cb5865308513f811899c5a6e1c0a (diff) | |
download | servo-bfe460de9e482bdd40b6ec6f702d612d1bb5b43b.tar.gz servo-bfe460de9e482bdd40b6ec6f702d612d1bb5b43b.zip |
Package tidy
- Modified the testing commands
- Added the requirements
- Moved python/tidy/tests to python/tidy/servo_tidy_tests for self tidy tests
Diffstat (limited to 'python/servo/testing_commands.py')
-rw-r--r-- | python/servo/testing_commands.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/python/servo/testing_commands.py b/python/servo/testing_commands.py index ea7cb7e50b8..66a2da5be3e 100644 --- a/python/servo/testing_commands.py +++ b/python/servo/testing_commands.py @@ -29,8 +29,8 @@ from mach.decorators import ( from servo.command_base import CommandBase, call, check_call from wptrunner import wptcommandline from update import updatecommandline -import tidy -from tidy_self_test import tidy_self_test +from servo_tidy import tidy +from servo_tidy_tests import test_tidy SCRIPT_PATH = os.path.split(__file__)[0] PROJECT_TOPLEVEL_PATH = os.path.abspath(os.path.join(SCRIPT_PATH, "..", "..")) @@ -279,7 +279,7 @@ class MachCommands(CommandBase): help="Run unit tests for tidy") def test_tidy(self, faster, no_progress, self_test): if self_test: - return tidy_self_test.do_tests() + return test_tidy.do_tests() else: return tidy.scan(faster, not no_progress) |