This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
category | name | tested | |
---|---|---|---|
basic | os | False | |
bookmarks_sync | failure_reason | False | |
bookmarks_sync | finished_at | False | |
bookmarks_sync | incoming | False | |
bookmarks_sync | outgoing | False | |
bookmarks_sync | outgoing_batches | False | |
bookmarks_sync | remote_tree_problems | False | |
bookmarks_sync | started_at | False | |
bookmarks_sync | uid | False |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/build/virtualenv_packages.txt b/build/virtualenv_packages.txt | |
--- a/build/virtualenv_packages.txt | |
+++ b/build/virtualenv_packages.txt | |
@@ -77,4 +77,5 @@ mozilla.pth:third_party/python/pyasn1 | |
mozilla.pth:third_party/python/pyasn1-modules | |
mozilla.pth:third_party/python/rsa | |
mozilla.pth:third_party/python/PyECC | |
+mozilla.pth:toolkit/components/telemetry/tests/marionette/harness | |
optional:packages.txt:comm/build/virtualenv_packages.txt | |
diff --git a/testing/marionette/mach_commands.py b/testing/marionette/mach_commands.py |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
addprx = "!f() { b=`git symbolic-ref -q --short HEAD` && \ | |
echo \"Making branch for pull request #$1 [pr/$1]\" && \ | |
git fetch origin pull/$1/head:pr/$1 && \ | |
echo \"Rebasing pr/$1 onto $b...\" && \ | |
git fetch -q -f origin pull/$1/merge:refs/PR_MERGE_HEAD && \ | |
git rebase -q --onto $b PR_MERGE_HEAD^ pr/$1 && \ | |
git checkout -q $b && echo && \ | |
git diff --stat $b..pr/$1 && echo && \ | |
git log --oneline $b..pr/$1; \ | |
git update-ref -d refs/PR_MERGE_HEAD; \ |