Mercurial > hg
view tests/test-notify-changegroup @ 10669:181cbb23572e stable
test-extension: fix disabled extension tests for run-tests.py --local
One test that requires inserting a broken extension into hgext does this
by modifying PYTHONPATH. This doesn't work when run with --local because
the 'hg' script being used is in the same directory as the local hgext.
Instead of modifying PYTHONPATH, a secondary extension is enabled using
--config that inserts the dummy hgext at the beginning of sys.path,
before the script's path.
author | Brodie Rao <me+hg@dackz.net> |
---|---|
date | Fri, 05 Mar 2010 17:38:02 -0500 |
parents | b714aac1f7b3 |
children | ca6ede0988d5 |
line wrap: on
line source
#!/bin/sh cat <<EOF >> $HGRCPATH [extensions] notify= [hooks] changegroup.notify = python:hgext.notify.hook [notify] sources = push diffstat = False maxsubject = 200 [usersubs] foo@bar = * [reposubs] * = baz EOF hg init a echo % clone hg --traceback clone a b echo a > b/a echo % commit hg --traceback --cwd b commit -Ama echo a >> b/a echo % commit hg --traceback --cwd b commit -Amb echo % push hg --traceback --cwd b push ../a 2>&1 | python -c 'import sys,re; print re.sub("\n\t", " ", sys.stdin.read()),' | sed -e 's/\(Message-Id:\).*/\1/' \ -e 's/changeset \([0-9a-f]* *\)in .*test-notif/changeset \1in test-notif/' \ -e 's/^Subject: .*test-notify/Subject: test-notify/' \ -e 's/^details: .*test-notify/details: test-notify/' \ -e 's/^Date:.*/Date:/'