Mercurial > evolve
annotate tests/test-check-flake8.t @ 4704:5f90eb8fd63c
evolve: fix confusion in branch heads checking logic when topic in play
To provide some context, when topics are in play the branchmap cache
we store contains the branch info of a rev as "branch:topic" format IIUC.
Assuming that is right, now in present code we don't actually cover
this part that "when looking for branch heads where we also have active
topic we should look for branch='branch_name:topic' instead".
And we get wrong branch heads as a result.
This patch make sure that we pass right candidate to find branch heads
using branchmap.branchheads() by overriding the localrepo.branchheads()
Changes in test file reflect the fixed behavior.
author | Sushil khanchi <sushilkhanchi97@gmail.com> |
---|---|
date | Tue, 25 Jun 2019 21:54:22 +0530 |
parents | b3dbba6e34c9 |
children | f354de498737 |
rev | line source |
---|---|
2038
a4b09789117a
tests: split pyflake and flake8 tests
Pierre-Yves David <pierre-yves.david@ens-lyon.org>
parents:
2037
diff
changeset
|
1 #require test-repo |
a4b09789117a
tests: split pyflake and flake8 tests
Pierre-Yves David <pierre-yves.david@ens-lyon.org>
parents:
2037
diff
changeset
|
2 |
a4b09789117a
tests: split pyflake and flake8 tests
Pierre-Yves David <pierre-yves.david@ens-lyon.org>
parents:
2037
diff
changeset
|
3 $ checkflake8() { |
a4b09789117a
tests: split pyflake and flake8 tests
Pierre-Yves David <pierre-yves.david@ens-lyon.org>
parents:
2037
diff
changeset
|
4 > if ! (which flake8 > /dev/null); then |
a4b09789117a
tests: split pyflake and flake8 tests
Pierre-Yves David <pierre-yves.david@ens-lyon.org>
parents:
2037
diff
changeset
|
5 > echo skipped: missing tool: flake8; |
a4b09789117a
tests: split pyflake and flake8 tests
Pierre-Yves David <pierre-yves.david@ens-lyon.org>
parents:
2037
diff
changeset
|
6 > exit 80; |
a4b09789117a
tests: split pyflake and flake8 tests
Pierre-Yves David <pierre-yves.david@ens-lyon.org>
parents:
2037
diff
changeset
|
7 > fi; |
a4b09789117a
tests: split pyflake and flake8 tests
Pierre-Yves David <pierre-yves.david@ens-lyon.org>
parents:
2037
diff
changeset
|
8 > }; |
a4b09789117a
tests: split pyflake and flake8 tests
Pierre-Yves David <pierre-yves.david@ens-lyon.org>
parents:
2037
diff
changeset
|
9 $ checkflake8 |
1930 | 10 |
11 Copied from Mercurial core (60ee2593a270) | |
12 | |
13 $ cd "`dirname "$TESTDIR"`" | |
14 | |
2002 | 15 run flake8 if it exists; if it doesn't, then just skip |
16 | |
3390
b3dbba6e34c9
evolve: start vendoring third party package cbor
Pulkit Goyal <7895pulkit@gmail.com>
parents:
2121
diff
changeset
|
17 $ hg files -0 'set:(**.py or grep("^#!.*python")) - removed()' \ |
b3dbba6e34c9
evolve: start vendoring third party package cbor
Pulkit Goyal <7895pulkit@gmail.com>
parents:
2121
diff
changeset
|
18 > -X hgext3rd/evolve/thirdparty \ |
b3dbba6e34c9
evolve: start vendoring third party package cbor
Pulkit Goyal <7895pulkit@gmail.com>
parents:
2121
diff
changeset
|
19 > 2>/dev/null \ |
2108
206066375dcb
checks: update pyflakes matching too
Pierre-Yves David <pierre-yves.david@ens-lyon.org>
parents:
2038
diff
changeset
|
20 > | xargs -0 flake8 |