aboutsummaryrefslogtreecommitdiffstats
path: root/python
diff options
context:
space:
mode:
authorbors-servo <lbergstrom+bors@mozilla.com>2018-06-19 19:33:01 -0400
committerGitHub <noreply@github.com>2018-06-19 19:33:01 -0400
commit7f745139a773bd26838b0a2b7d992d8252ce4fed (patch)
tree00043bb0fc2ecfeca954446a9ec27eaae2c804f2 /python
parente231a68acf4dabc7541cb15703f082eb3dd2b945 (diff)
parent80c41b426626aa90726389bd12944ab189957806 (diff)
downloadservo-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')
-rw-r--r--python/servo/testing_commands.py4
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',