diff options
author | bors-servo <lbergstrom+bors@mozilla.com> | 2018-06-19 19:33:01 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-06-19 19:33:01 -0400 |
commit | 7f745139a773bd26838b0a2b7d992d8252ce4fed (patch) | |
tree | 00043bb0fc2ecfeca954446a9ec27eaae2c804f2 /python/servo/testing_commands.py | |
parent | e231a68acf4dabc7541cb15703f082eb3dd2b945 (diff) | |
parent | 80c41b426626aa90726389bd12944ab189957806 (diff) | |
download | servo-7f745139a773bd26838b0a2b7d992d8252ce4fed.tar.gz servo-7f745139a773bd26838b0a2b7d992d8252ce4fed.zip |
Auto merge of #21056 - tigercosmos:ttt, r=jdm
improve test-tidy
check wpt manifest when run tidy
If CI has already run `test-tidy`, and then no need to run `etc/ci/manifest_changed.sh`
<!-- Reviewable:start -->
---
This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/21056)
<!-- Reviewable:end -->
Diffstat (limited to 'python/servo/testing_commands.py')
-rw-r--r-- | python/servo/testing_commands.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/python/servo/testing_commands.py b/python/servo/testing_commands.py index b0d07f0821b..545fa19f3b0 100644 --- a/python/servo/testing_commands.py +++ b/python/servo/testing_commands.py @@ -319,7 +319,9 @@ class MachCommands(CommandBase): if self_test: return test_tidy.do_tests() else: - return tidy.scan(not all_files, not no_progress, stylo=stylo) + manifest_dirty = run_update(self.context.topdir, check_clean=True) + tidy_failed = tidy.scan(not all_files, not no_progress, stylo=stylo) + return tidy_failed or manifest_dirty @Command('test-webidl', description='Run the WebIDL parser tests', |