This is an archive of the discontinued Mercurial Phabricator instance.

phabricator: move extension from contrib to hgext
ClosedPublic

Authored by durin42 on Sep 15 2018, 1:23 AM.

Details

Summary

It's well-enough tested now and widely enough used I think we should
ship it.

Diff Detail

Repository
rHG Mercurial
Lint
Automatic diff as part of commit; lint not applicable.
Unit
Automatic diff as part of commit; unit tests not applicable.

Event Timeline

durin42 created this revision.Sep 15 2018, 1:23 AM
durin42 updated this revision to Diff 11083.Sep 15 2018, 1:49 AM
yuja added a subscriber: yuja.Sep 15 2018, 3:23 AM

Added workaround for test-check-help. as follows:

diff --git a/tests/test-check-help.t b/tests/test-check-help.t
--- a/tests/test-check-help.t
+++ b/tests/test-check-help.t
@@ -26,4 +26,4 @@ Check if ":hg:`help TOPIC`" is valid:
   $ testrepohg files 'glob:{hgdemandimport,hgext,mercurial}/**/*.py' \
   > | sed 's|\\|/|g' \
   > | xargs $PYTHON "$TESTTMP/scanhelptopics.py" \
-  > | xargs -n1 hg help > /dev/null
+  > | xargs -n1 hg help --config extensions.phabricator= > /dev/null

This doesn't look nice, but should be okay for now.

This revision was automatically updated to reflect the committed changes.