Mercurial > evolve
view tests/test-version-install.t @ 5323:6ea05c9744de stable
obslog: make obslog --no-origin -f work with multiple successor sets
When trying to sort multiple successor sets, this block of code used to fail
with:
- TypeError: '<' not supported between instances of 'dict' and 'dict' (on py3)
- TypeError: cannot compare sets using cmp() (on py2)
So for sorted() to work properly, we need to remove dicts and sets from the
data.
author | Anton Shestakov <av6@dwimlabs.net> |
---|---|
date | Thu, 14 May 2020 22:19:58 +0800 |
parents | 095bab0d0cd7 |
children | 44c20093fc0e |
line wrap: on
line source
$ cat >> $HGRCPATH <<EOF > [extensions] > EOF $ echo "evolve=$(echo $(dirname $TESTDIR))/hgext3rd/evolve/" >> $HGRCPATH Test outputting version number $ hg version -v Mercurial Distributed SCM (version *) (glob) (see https://mercurial-scm.org for more information) Copyright (C) 2005-* Matt Mackall and others (glob) This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. Enabled extensions: evolve external * (glob) Test install TODO: fix warning $ "$PYTHON" "$TESTDIR/../setup.py" install --root "$TESTTMP/installtest" > /dev/null */distutils/dist.py:*: UserWarning: Unknown distribution option: 'python_requires' (glob) warnings.warn(msg)